Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.216.8.36
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
theprintave /
wp-includes /
blocks /
details /
Delete
Unzip
Name
Size
Permission
Date
Action
autoloader.php
3.92
KB
-rwxrwxrwx
2024-11-13 12:36
block.json
1.68
KB
-rwxrwxrwx
2025-04-15 17:44
class-oembed.php
401
B
-rwxrwxrwx
2022-06-17 11:20
class-simplepie.php
453
B
-rwxrwxrwx
2024-11-13 12:36
class-wp-dependencies.php
14.78
KB
-rwxrwxrwx
2024-11-13 12:36
class-wp-hook.php
15.63
KB
-rwxrwxrwx
2023-09-18 12:41
class-wp-locale.php
16.49
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp-matchesmapregex-20250515042208.php
1.79
KB
-rwxrwxrwx
2024-04-03 05:49
class-wp-matchesmapregex.php
1.79
KB
-rwxrwxrwx
2024-04-03 05:49
class-wp-oembed.php
30.91
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp-query.php
154.32
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp-taxonomy.php
18.12
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp-widget.php
18
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp.php
25.7
KB
-rwxrwxrwx
2025-04-15 17:44
class.wp-styles.php
338
B
-rwxrwxrwx
2022-09-20 14:17
editor-rtl.css
50
B
-rwxrwxrwx
2023-06-27 14:24
editor-rtl.min.css
45
B
-rwxrwxrwx
2023-06-27 14:24
editor.css
50
B
-rwxrwxrwx
2023-06-27 14:24
editor.min.css
45
B
-rwxrwxrwx
2023-06-27 14:24
home-link.php
5.31
KB
-rwxrwxrwx
2025-04-15 17:44
https-migration.php
4.63
KB
-rwxrwxrwx
2023-07-10 22:38
latest-comments.php
4.92
KB
-rwxrwxrwx
2024-07-16 17:55
latest-posts.php
8.34
KB
-rwxrwxrwx
2024-11-13 12:36
ms-files.php
2.68
KB
-rwxrwxrwx
2025-04-30 17:44
pattern.php
1.75
KB
-rwxrwxrwx
2025-04-15 17:44
pluggable-deprecated.php
6.18
KB
-rwxrwxrwx
2025-04-15 17:44
post-comments-form.php
2.74
KB
-rwxrwxrwx
2024-07-16 17:55
registration-functions.php
200
B
-rwxrwxrwx
2020-11-12 11:17
robots-template.php
5.06
KB
-rwxrwxrwx
2022-04-06 15:33
router-20250514001731.js
52.01
KB
-rwxrwxrwx
2025-04-15 17:44
site-title.php
1.81
KB
-rwxrwxrwx
2025-04-15 17:44
style-rtl.css
93
B
-rwxrwxrwx
2024-07-16 17:55
style-rtl.min.css
81
B
-rwxrwxrwx
2024-07-16 17:55
style.css
93
B
-rwxrwxrwx
2024-07-16 17:55
style.min.css
81
B
-rwxrwxrwx
2024-07-16 17:55
template-canvas.php
544
B
-rwxrwxrwx
2023-10-01 00:22
template-loader.php
3.07
KB
-rwxrwxrwx
2025-05-09 07:39
widgets.php
69.06
KB
-rwxrwxrwx
2025-05-09 07:39
Save
Rename
<?php /** * WP_MatchesMapRegex helper class * * @package WordPress * @since 4.7.0 */ /** * Helper class to remove the need to use eval to replace $matches[] in query strings. * * @since 2.9.0 */ #[AllowDynamicProperties] class WP_MatchesMapRegex { /** * store for matches * * @var array */ private $_matches; /** * store for mapping result * * @var string */ public $output; /** * subject to perform mapping on (query string containing $matches[] references * * @var string */ private $_subject; /** * regexp pattern to match $matches[] references * * @var string */ public $_pattern = '(\$matches\[[1-9]+[0-9]*\])'; // Magic number. /** * constructor * * @param string $subject subject if regex * @param array $matches data to use in map */ public function __construct( $subject, $matches ) { $this->_subject = $subject; $this->_matches = $matches; $this->output = $this->_map(); } /** * Substitute substring matches in subject. * * static helper function to ease use * * @param string $subject subject * @param array $matches data used for substitution * @return string */ public static function apply( $subject, $matches ) { $result = new WP_MatchesMapRegex( $subject, $matches ); return $result->output; } /** * do the actual mapping * * @return string */ private function _map() { $callback = array( $this, 'callback' ); return preg_replace_callback( $this->_pattern, $callback, $this->_subject ); } /** * preg_replace_callback hook * * @param array $matches preg_replace regexp matches * @return string */ public function callback( $matches ) { $index = (int) substr( $matches[0], 9, -1 ); return ( isset( $this->_matches[ $index ] ) ? urlencode( $this->_matches[ $index ] ) : '' ); } }