NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Response to Plat_forms conclusions? (Score:2)
Re: (Score:1)
Web service : yes, that is true. The requirement was a complex WSDL interface and none of the Perl teams found any CPAN module powerful enough to do that; and doing it by hand in 30h. was just impossible.
About attacks: I guess you mean SQL attacks. We used bind parameters, so we don't agree with what the report says. True enough, the application did not do too much checking on the input, but then wrong data was rejected by the database, and you got an unfriendly error message. That's not nice to the user
Re: (Score:2)
@JAPH = qw(Hacker Perl Another Just);
print reverse @JAPH;
Re:Response to Plat_forms conclusions? (Score:1)
Reply to This
Parent
Re: (Score:1)
Also we do not agree what they say about SQL injection. We were using DBix::Class and relied on bind params. We did no actual filtering of the input or length checking (what I agree is a mistake).
Also trying to insert 8 byte chinese ideograms while internationalisation was no requirement at all is a bit, well, strange to