IO::Stream::Proxy::SOCKSv5 - SOCKSv5 proxy plugin for IO::Stream
This document describes IO::Stream::Proxy::SOCKSv5 version v2.0.1
use IO::Stream;
use IO::Stream::Proxy::SOCKSv5;
IO::Stream->new({
...
plugin => [
...
proxy => IO::Stream::Proxy::SOCKSv5->new({
host => 'my.proxy.com',
port => 3128,
}),
...
],
});
This module is plugin for IO::Stream which allow you to route stream through SOCKSv5 proxy.
You may use several IO::Stream::Proxy::SOCKSv5 plugins for single IO::Stream object, effectively creating proxy chain (first proxy plugin will define last proxy in a chain).
While version 5 of SOCKS protocol support domain name resolving by proxy, it unable to report resolved IP address, which is required by IO::Stream architecture, so resolving happens always on client side. This may result in leaking client's DNS resolver IP address (usually it's client's address or client's ISP address) and detecting the fact of using proxy.
When using this plugin event RESOLVED will never be delivered to user because there may be two hosts to resolve (target host and proxy host) and it isn't clear how to handle this case in right way.
Event CONNECTED will be generated after SOCKS proxy successfully connects to target {host} (and not when socket will connect to SOCKS proxy itself).
$plugin = IO::Stream::Proxy::SOCKSv5->new({
host => $host,
port => $port,
});
Connect to proxy $host:$port.
-
{host}+{port} required
You must provide both {host} and {port} to IO::Stream::Proxy::SOCKSv5->new().
-
{fh} already connected
You have provided {fh} to IO::Stream->new(), but this is not supported by this plugin. Either don't use this plugin or provide {host}+{port} to IO::Stream->new() instead.
Only these authentication methods supported:
- no authentication
SOCKS "BIND" request doesn't supported.
SOCKS "associate UDP" request doesn't supported.
Please report any bugs or feature requests through the issue tracker at https://github.com/powerman/perl-IO-Stream-Proxy-SOCKSv5/issues. You will be notified automatically of any progress on your issue.
This is open source software. The code repository is available for public review and contribution under the terms of the license. Feel free to fork the repository and submit pull requests.
https://github.com/powerman/perl-IO-Stream-Proxy-SOCKSv5
git clone https://github.com/powerman/perl-IO-Stream-Proxy-SOCKSv5.git
-
MetaCPAN Search
-
CPAN Ratings
-
AnnoCPAN: Annotated CPAN documentation
-
CPAN Testers Matrix
-
CPANTS: A CPAN Testing Service (Kwalitee)
Alex Efros powerman@cpan.org
This software is Copyright (c) 2010- by Alex Efros powerman@cpan.org.
This is free software, licensed under:
The MIT (X11) License