Help for this page

Select Code to Download


  1. or download this
    <FORM METHOD=post ACTION=/doit.pl>
    <INPUT NAME=action TYPE=checkbox VALUE="INSERT INTO table VALUES (1,2,
    +3)">
    <INPUT TYPE=submit>
    </FORM>
    
  2. or download this
    use LWP::UserAgent;
    my $ua = LWP::UserAgent->new;
    my $req = HTTP::Request->new(POST => 'http://your.server.com/doit.pl')
    +;
    $req->content(q{action=DELETE%20FROM%20table});
    $ua->request($req); #kaboom, your table is gone