Publicado el 20/11/2011 12:11:00 en Hacking Tools.
Author: kaOs | Total de votos: 6 Vote
Bueno, tiene mucho que no posteo por aqui, aqui vengo a dejarles una T00l que les ayudara a algunos :) El nombre lo dice todo!. Espero que les sirva! +1?? xDDDDD
Saludos!
Screen:

Código:
<?php $contenido=""; $origen=""; $palabras=""; $resultado=""; if($_POST) { if(isset($_POST["executar"])) { $origen = $_POST['origen']; $resultado = $origen; $palabras=$_POST['palabras']; $tokens=explode(',',$palabras); if($tokens) { foreach ($tokens as $token) { if(strlen($token)>0) { $resultado = preg_replace('/'.str_replace('/','\/',$token).'/','',$resultado); } } } } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>::.List Cleaner V1.0 by CsrX! & b4du3l.::</title> <style> td.header{ background-image:url(https://img403.imageshack.us/img403/9314/headerui.png); } td.footer{ background-image:url(https://img835.imageshack.us/img835/5258/footermay.png); } td.body{ background-image:url(https://img696.imageshack.us/img696/1263/bodyyi.jpg); } textarea { margin-top:0px; margin-bottom:0px; font-family: verdana, arial, sans-serif; font-size: 11px; color: #000000; padding:4px; border: 1px; border-style: solid; background-color: #999999; background-image: url(https://img822.imageshack.us/img822/9026/codey.png); } button { background:transparent; border:0px; padding:0px; margin:0px; } </style> </head> <body> <table width="800" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="100" class="header"> </td> </tr> <tr> <td height="400" class="body"> <form action="" name="replacer" id="replacer" method="POST"> <img src="https://img14.imageshack.us/img14/6223/origenq.png" /><br> <label> <textarea name="origen" id="origen" maxlength="5000" cols="83" rows="4"><?=$origen?></textarea> </label><br> <img src="https://img151.imageshack.us/img151/5218/palabra.png" /><br> <label> <textarea name="palabras" id="palabras" maxlength="100" cols="83" rows="4"><?=$palabras?></textarea> </label><br> <img src="https://img341.imageshack.us/img341/9124/resultadoq.png" /><br> <label> <textarea name="resultado" id="resultado" maxlength="5000" cols="83" rows="4" readonly><?=$resultado?></textarea> </label> <br><br> <label class="btn"> <button type="submit" name="executar" id="executar" value="lmpiar"> <img src="https://img401.imageshack.us/img401/8602/btnx.png" /></button> </label> </form> </td> </tr> <tr> <td height="100" class="footer"> </td> </tr> </table> </body> </html>