Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
libnet-ssleay-perl /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
bio.pl
1.18
KB
-rw-r--r--
2018-07-09 20:58
bulk.pl
1.91
KB
-rwxr-xr-x
2018-07-09 20:58
callback.pl
3.12
KB
-rwxr-xr-x
2018-07-09 20:58
cb-testi.pl
548
B
-rw-r--r--
2018-07-09 20:58
cli-cert.pl
3.72
KB
-rw-r--r--
2018-07-09 20:58
ephemeral.pl
553
B
-rw-r--r--
2018-07-09 20:58
get_authenticated_page.pl
730
B
-rwxr-xr-x
2018-07-09 20:58
get_page.pl
507
B
-rwxr-xr-x
2018-07-09 20:58
get_page_cert.pl
966
B
-rw-r--r--
2018-07-09 20:58
https-proxy-snif.pl
4.44
KB
-rwxr-xr-x
2018-07-09 20:58
makecert.pl
1.5
KB
-rwxr-xr-x
2018-07-09 20:58
minicli.pl
1.31
KB
-rwxr-xr-x
2018-07-09 20:58
passwd-cb.pl
809
B
-rw-r--r--
2018-07-09 20:58
req.conf
1.2
KB
-rw-r--r--
2018-07-09 20:58
server_key.pem
963
B
-rw-r--r--
2018-07-09 20:58
ssl-inetd-serv.pl
1.6
KB
-rwxr-xr-x
2018-07-09 20:58
ssl_diff.pl
631
B
-rwxr-xr-x
2018-07-09 20:58
sslcat.pl
526
B
-rwxr-xr-x
2018-07-09 20:58
sslecho.pl
3.07
KB
-rwxr-xr-x
2018-07-09 20:58
stdio_bulk.pl
2.53
KB
-rwxr-xr-x
2018-07-09 20:58
tcpcat.pl
422
B
-rwxr-xr-x
2018-07-09 20:58
tcpecho.pl
1.77
KB
-rwxr-xr-x
2018-07-09 20:58
x509_cert_details.pl
10.31
KB
-rwxr-xr-x
2020-10-10 21:11
Save
Rename
#!/usr/bin/perl # tcpcat.pl - Send a message and receive a reply from TCP server. # # Copyright (c) 2003 Sampo Kellomaki <sampo@iki.fi>, All Rights Reserved. # $Id$ # 17.8.2003, created --Sampo $host = 'localhost' unless $host = shift; $port = 443 unless $port = shift; $msg = "get \n\r\n" unless $msg = shift; print "$host $port $msg\n"; use Net::SSLeay qw(tcpcat); print tcpcat($host, $port, $msg); __END__