Ver Mensaje Individual
  #3  
Antiguo 27-03-2007
cahosoft cahosoft is offline
Miembro
 
Registrado: jul 2003
Posts: 102
Reputación: 21
cahosoft Va por buen camino
Gracias a Todos

Gracias a Todos por la ayuda prestada... pero gracias a una pagina que encontre
http://codewalkers.com/archives/phpcoding/5511.html

impelmente este php que desofusca codigos en php...de una manera muy peculiar copien este php y pruebenlo....:

Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Desofuscar</title>
</head>

<body>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<form id="form1" name="form1" method="post" action="">
  <table width="72%" border="1" align="center" cellspacing="1">
    <tr>
      <td><div align="center">Producciones Cahosoft</div></td>
    </tr>
    <tr>
      <td><div align="center">&quot;Camila el amor de mi vida&quot; </div></td>
    </tr>
    <tr>
      <td><div align="center">
        <textarea name="string" cols="80" rows="20" id="string"><?=$string?>
      </textarea>
      </div></td>
    </tr>
    <tr>
      <td>&lt;? eval(gzinflate(base64_decode('Copiar el texto codificado en el area de texto DZU1suQIAgWvMt5 ')?&gt;</td>
    </tr>
    <tr>
      <td>Profundidad 
      <input name="profundidad" type="text" id="profundidad" value="12" size="10" /> 
      A veces es necesario mas profundidad ara encontrar el resultado deseado </td>
    </tr>
    <tr>
      <td><input type="submit" name="Submit2" value="Des-Ofuscar" /></td>
    </tr>
  </table>
  <p>&nbsp;</p>
</form>

<p>&nbsp;</p>
<p>
  <?php 

if ((isset($string)) && (isset($profundidad)))
{

for (
$i=1$i<$profundidad; ++$i)
{
$string=gzinflate(base64_decode($string));
$string=str_replace('?><? eval(gzinflate(base64_decode(\'','',$string);
$string=str_replace('\'))); ?>','',$string);
 
?>
 <table width="50%" border="1" align="center" cellspacing="0">
  <tr>
    <td>Profundidad No <?=$i?></td>
  </tr>
  <tr>
    <td><textarea name="textarea" cols="80" rows="20"><?=$string?></textarea></td>
  </tr>
</table>
  
  <?php 
  
}
  }
  
?>
&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</body>
</html>

Última edición por dec fecha: 27-03-2007 a las 02:01:00.
Responder Con Cita