Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^2: CGI Input with Escaped Characters

by hoyt (Acolyte)
on Apr 19, 2017 at 01:21 UTC ( [id://1188251]=note: print w/replies, xml ) Need Help??


in reply to Re: CGI Input with Escaped Characters
in thread CGI Input with Escaped Characters

I'm still really struggling with this. I've tried to back the calculation up a few steps in the JS code, but that's leading to a ton of other problems for me, so I'm not sure that's going to work too well. I keep coming back to attempting to do this in Perl instead. I've boiled this down to a simple example:
#!/usr/bin/perl -w use strict; use CGI; use URI::Escape; use JSON; use Digest::SHA qw(hmac_sha512_hex); my $query = CGI->new; my $raw_data = $query->param('data'); my $data = decode_json($raw_data); my $actual_data = '{"request":{"service":"test"},"data":{"test_input": +"%2B2"}}'; print "raw_data: ".$raw_data."\n"; print "no escaping: ".$data->{data}->{test_input}." vs escaping: "; print uri_escape($data->{data}->{test_input})."\n"; print hmac_sha512_hex($raw_data,"ABCD1234")."\n"; print hmac_sha512_hex($actual_data,"ABCD1234")."\n";
If you run that on the command line like this: ./script.pl 'data={"request":{"service":"test"},"data":{"test_input":"%2B2"}}' You'll get this:
raw_data: {"request":{"service":"test"},"data":{"test_input":"+2"}} no escaping: +2 vs escaping: %2B2 3c6de296682e7f3896073fe41af9732a294ef723bb1e5c75aa1eba1af981f04f0a0963 +d03604119ea92b719a2912ef0c957c03a7268b51e2170f8fed7c875465 32595bf215b309a73c8dd4d09600430378f455c7cb44d31573b08566ddff0a7bd3c536 +8d70696b57a2c1c95e862ed7b062501e39820bf973c9309812250df460
I need the 32595... calculation to compare to the input (which I removed from the Perl example to make it shorter). I can't just unescape the whole string, because then it'll attempt to escape the part that makes it a JSON input ({, :, etc). It's as if the CGI input unescapes automatically and I can't figure out how to make it not unescape (or "re-escape"). Any ideas on how to do that before I write something myself to deal with escaped characters in a hmac sha? Thanks!

Replies are listed 'Best First'.
Re^3: CGI Input with Escaped Characters
by Anonymous Monk on Apr 19, 2017 at 02:25 UTC

    Hi,

    You forgot to escape  {"request":{"service":"test"},"data":{"test_input":"%2B2"}}

    This is an error  CGI->new( 'data={"request":{"service":"test"},"data":{"test_input":"%2B2"}}' );

    You want this  CGI->new( 'data=%7B%22request%22%3A%7B%22service%22%3A%22test%22%7D%2C%22data%22%3A%7B%22test_input%22%3A%22%252B2%22%7D%7D')

    You want this  CGI->new( { data => $actual_data, } )

    Its like writing

    my $query = CGI->new({}); $query->param( 'data', $actual_data ); print $query->self_url;

    This is how query-string/form-data works

    Now if you were to use HTTP POST/PUT/PATCH you could use raw json in the request ; they call that AJAX

    { use LWP; my $req = HTTP::Request->new( POST => 'http://127.0.0.1:80/' ); $req->content_type( 'application/json' ); #~ $req->header('X-File-Name' => 'tiny.gif' ); $req->content_length( length $actual_data ); $req->content( $actual_data ); print "\n", $req->as_string, "\n"; } __END__ POST http://127.0.0.1:80/ Content-Length: 59 Content-Type: application/json {"request":{"service":"test"},"data":{"test_input":"%2B2"}}

    And to get at this ajax request from a .cgi you'd use

    use CGI 4.35; my $raw_data = CGI->new->param('POSTDATA'); # or PUTDATA or PATCHDATA

    An "fundvanced" example Mojolicious::Lite +and jQuery +AJAX + Mojo::Template

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1188251]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (5)
As of 2024-04-26 08:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found