!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/usr/share/doc/libnet-ssleay-perl/examples/   drwxr-xr-x
Free 29.22 GB of 117.98 GB (24.77%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ssl-inetd-serv.pl (1.6 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# ssl-inetd-serv.pl - SSL echo server run from inetd
#
# Copyright (c) 1996,1998 Sampo Kellomaki <sampo@iki.fi>. 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__

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0034 ]--