__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/usr/bin/perl # ssl-inetd-serv.pl - SSL echo server run from inetd # # Copyright (c) 1996,1998 Sampo Kellomaki <[email protected]>. All Rights Reserved. # Date: 27.6.1996, 19.6.1998 # # /etc/inetd.conf: # ssltst stream tcp nowait root /usr/sampo/ssl-inetd-serv.pl ssl-inetd # # /etc/services: # ssltst 1234/tcp # use Net::SSLeay qw(die_now die_if_ssl_error); Net::SSLeay::load_error_strings(); Net::SSLeay::SSLeay_add_ssl_algorithms(); chdir '/usr/sampo' or die "chdir: $!"; $| = 1; # STDOUT Piping hot! open LOG, ">>log" or die "Can't open log file $!"; select LOG; $| = 1; print "ssl-inetd-serv.pl started\n"; print "Creating SSL context...\n"; $ctx = Net::SSLeay::CTX_new or die_now("CTX_new ($ctx) ($!)"); print "Setting private key and certificate...\n"; Net::SSLeay::set_server_cert_and_key($ctx, 'cert.pem', 'key.pem') or die "key"; print "Creating SSL connection (context was '$ctx')...\n"; $ssl = Net::SSLeay::new($ctx) or die_now("new ($ssl) ($!)"); print "Setting fds (ctx $ctx, con $ssl)...\n"; Net::SSLeay::set_rfd($ssl, fileno(STDIN)); Net::SSLeay::set_wfd($ssl, fileno(STDOUT)); print "Entering SSL negotiation phase...\n"; Net::SSLeay::accept($ssl); die_if_ssl_error("accept: $!"); print "Cipher '" . Net::SSLeay::get_cipher($ssl) . "'\n"; # # Connected. Exchange some data. # $got = Net::SSLeay::ssl_read_all($ssl) or die "$$: ssl read failed"; print "Got `$got' (" . length ($got) . " chars)\n"; $got = uc $got; Net::SSLeay::ssl_write_all($ssl, $got) or die "$$: ssl write failed"; print "Tearing down the connection.\n"; Net::SSLeay::free ($ssl); Net::SSLeay::CTX_free ($ctx); close LOG; __END__
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| bio.pl | File | 1.18 KB | 0644 |
|
| bulk.pl | File | 1.91 KB | 0755 |
|
| callback.pl | File | 3.12 KB | 0755 |
|
| cb-testi.pl | File | 548 B | 0644 |
|
| cli-cert.pl | File | 3.72 KB | 0644 |
|
| ephemeral.pl | File | 553 B | 0644 |
|
| get_authenticated_page.pl | File | 730 B | 0755 |
|
| get_page.pl | File | 507 B | 0755 |
|
| get_page_cert.pl | File | 966 B | 0644 |
|
| https-proxy-snif.pl | File | 4.44 KB | 0755 |
|
| makecert.pl | File | 1.5 KB | 0755 |
|
| minicli.pl | File | 1.31 KB | 0755 |
|
| passwd-cb.pl | File | 809 B | 0644 |
|
| req.conf | File | 1.2 KB | 0644 |
|
| server_key.pem | File | 963 B | 0644 |
|
| ssl-inetd-serv.pl | File | 1.6 KB | 0755 |
|
| ssl_diff.pl | File | 631 B | 0755 |
|
| sslcat.pl | File | 526 B | 0755 |
|
| sslecho.pl | File | 3.07 KB | 0755 |
|
| stdio_bulk.pl | File | 2.53 KB | 0755 |
|
| tcpcat.pl | File | 422 B | 0755 |
|
| tcpecho.pl | File | 1.77 KB | 0755 |
|
| x509_cert_details.pl | File | 10.31 KB | 0755 |
|