The code you posted, axml_release_0.1.3, does not use DBI quote or quote_identifier or placeholders anywhere in the code
./main/aXML.pm: my $query = qq{ SELECT * FROM users WHERE use +rname="$username" }; ./main/plugins/batchvalidate.aXMLpi: my $query = qq{ SELECT * +FROM $in WHERE $name=\"$value\" }; ./main/plugins/batchvalidate.aXMLpi: my $query = qq{ SELECT * +FROM $in WHERE $name=\"$value\" }; ./main/plugins/math.aXMLpi:$result = "<SQL mode=\"read\">SELECT $data; +</SQL>"; ./main/plugins/runaction.aXMLpi: my $query = qq{ SELECT * FRO +M users WHERE username="$session->{username}" }; ./main/plugins/session.aXMLpi: my $query = qq{ SELECT * FROM +sessions WHERE sessionID="$qd->{sessionID}"; }; ./main/plugins/SQL.aXMLpi: my $query = qq[ SELECT count(1) +FROM $table WHERE ]; ./main/plugins/SQL.aXMLpi: my $query = "SELECT * FROM $command_ar +gs->{db} WHERE 1=0"; ./main/plugins/SQL.aXMLpi: $query = qq{ SELECT * FROM $command +_args->{db} WHERE $command_args->{key}="$command_args->{value}" ./main/plugins/SQL.aXMLpi: $query = qq{ SELECT * FROM $command +_args->{db} WHERE $command_args->{key}="$command_args->{value}" }; ./main/plugins/SQL.aXMLpi: my $sth = $dbh->prepare("SELECT * +FROM $command_args->{table} WHERE 1=0"); ./main/system/sessions.pm: my $query = " SELECT * FROM sessions WHE +RE sessionID=\"$_[1]\""; ./main/system/SQL.pm: my $query = qq { SELECT $col FROM $db WHERE +$key }; ./main/system/SQL.pm: my $sth = $dbh->prepare( qq { SELECT COU +NT(1) as "NUM" FROM $from $where; } ); ./site/common/showfeedback.aXML: SELECT * FROM feedback;

In reply to Re^5: Update : aXML Release 0.1.3 by Anonymous Monk
in thread Update : aXML Release 0.1.3 by simonodell

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.