rrwo has asked for the wisdom of the Perl Monks concerning the following question:
I have some ideas for modules, which from a cursory search on CPAN do not seem to exist, but which I think might be very useful.
If you don't understand the title, imagine this:
tie $input, Tie::HTMLEncode; $input = "<script>alert(\"Boo!\")</script>"; print $input; # outputs <script>alert("Boo!")</script>
Is there already such a module? (I know there are already modules that encode; I'm asking if one is done through tie.) Would you find it useful?
The idea came to me from the article at perl.com on Cross-Site Scripting.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Module Ideas - Tie::HTMLencode and Tie::UrlEncode
by dash2 (Hermit) on Feb 21, 2002 at 13:34 UTC | |
by rrwo (Friar) on Feb 22, 2002 at 02:42 UTC | |
|
Re: Module Ideas - Tie::HTMLencode (boo)
by boo_radley (Parson) on Feb 21, 2002 at 15:22 UTC |