Category: pwncurl
urlencode in Pawn
When creating new REST-ful API for GTAT (based upon my pwncurl and a lua backend) I had to implement the method urlencode in pawn.
So I took a look at the specification in RFC 1738 to get information about what characters need to be encoded.
RFC 1738: Only alphanumerics, the special characters "$-_.+!*'(),", and reserved characters used for their reserved purposes may be used unencoded within a URL.
Since I really want to be sure that all is encoded properly and %xx encoding is
Page 1


