Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl $|=1; # Run this with Faucet. #use strict; use IO::Socket; use Net::hostent; use bytes; my $remote=$ARGV[0]; my $buf, $byte, @head, $up, $user, $err, $kidpid, $sock, $op, $server; my $destip, $destport, $i; ### Read in first bytes of the Socks header. read(STDIN,$buf,4); @head=unpack("CCn",$buf); read(STDIN,$buf,4); $ip=inet_ntoa($buf); $user=''; while(read(STDIN,$buf,1)) { last unless(ord $buf); $user .= $buf; } ### Do some insanity checking. $err=91; $op=-1; # Assume Not OK... $destip=pack("N",0); $destport=0; if($head[0] == 4) { # SOCKS 4 if($head[1] == 1) { # CONNECT $sock=IO::Socket::INET->new(Proto=>"tcp", PeerAddr=>$ip, PeerPort=>$head[2]); if($sock) { $sock->autoflush(1); $err=90; } } elsif($head[1] == 2) { # BIND $destport=$$; $destip=inet_aton($remote); $server=IO::Socket::INET->new(Proto=>'tcp', LocalPort=>$$, LocalAddr=>$remote, Listen=>1, Reuse=>1); print pack("CCn",0,90,$destport).$destip; if($sock=$server->accept()) { $sock->autoflush(1); if($sock->peerhost eq $ip) { $err=90; } else { close $sock; } } close $server; } } print pack("CCn",0,$err,$destport).$destip; exit if($err>90); die "can't fork: $!" unless defined($kidpid=fork()); if($kidpid) { while(read($sock,$byte,1)){ print STDOUT $byte; } kill("TERM", $kidpid); } else { while (read(STDIN,$byte,1)) { print $sock $byte; } }

In reply to SOCKS4 Server in Perl by strredwolf

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (2)
As of 2024-04-25 20:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found