I am considering the details of the POST request for the Inmagic TextWorks system in the Chrome developer tools. If I go to POST, I see the following:
Form Dataview sourceview URL encoded
status:
mode:sort
currentPage:1
querySql:[PROCESSED]c:5f:2:61:58:-62:7:3 [bunch of stuff like this]
What am I looking for in querySql? My first thought was that it was Hex, but it contains negative numbers - and when I run it through the hex-asci converter, I get nonsense. My second thought was that it is a URL encoding, but it does not contain percentages. Obviously, this is some kind of encoded SQL-code, but how is such SQL encoded? What is it? How can I say what that means?
source
share