diff options
author | ivan <ivan> | 2000-09-23 18:08:45 +0000 |
---|---|---|
committer | ivan <ivan> | 2000-09-23 18:08:45 +0000 |
commit | c95ebfccc9bce5d8e48d5339d31b25d88a183fde (patch) | |
tree | d31ab49828f89196fff8c83bcf357d53b88776e3 /TODO | |
parent | cb69f12c04dcf89236cf6e0b35a0a3f7f6c03929 (diff) |
fix for DoS vulnerability noted by Kevin S. Ho
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,13 @@ +here's a one-liner to find duplicate inputbox'es: + +grep inputbox staffing.html | perl -pe '/inputbox\(\"(.*)\"\)/ or die; $_="$1\n";' | sort | uniq -d + +(though the program should probably error out) + +and here's another useful one: + + perl -ne 'if ( /^((.*)\s+)(\S+\@\S+)$/ ) { print "$1<$3>\n"; } else { print "$_\n"; }' P* + Delivered-To: ivan-fnf-planners@420.am To: phred@well.com, larryc@cloudfactory.org, fnf-planners@topica.com From: Rob Jellinghaus <robj@unrealities.com> |