Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ln5/twisted-socks
Adding client SOCKS support to Twisted.
https://github.com/ln5/twisted-socks
Last synced: 2 months ago
JSON representation
Adding client SOCKS support to Twisted.
- Host: GitHub
- URL: https://github.com/ln5/twisted-socks
- Owner: ln5
- License: bsd-3-clause
- Created: 2011-07-28T20:16:48.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-02-02T13:03:55.000Z (almost 11 years ago)
- Last Synced: 2024-08-03T17:12:19.864Z (6 months ago)
- Language: Python
- Homepage:
- Size: 147 KB
- Stars: 18
- Watchers: 3
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
- awesome-network-stuff - **18**星
README
twisted-socks -- Client SOCKS support in Twisted.
Twisted [0] doesn't seem to have support for writing a SOCKS client.
The SOCKS support is written for servers and is restricted to SOCKSv4.This package aims to add support for client TCP connections, with or
without SSL/TLS, to go over a SOCKS proxy, version 4, 4a or 5.See the examples directory for an idea on how to use it. You can run
the http example like this:cd examples; ln -s ../socksclient.py .
./http.py http://google.com/You can start a SOCKSv4 proxy server in the foreground by issuing
twistd -n socks
Thanks to lebek for the Twisted magic needed to hook this in.
Thanks to hellais and nextime for the bugfix that sneaked into
a1c4f02c.
Thanks to Karsten Loesing for bug fixes.This package is being maintained by [email protected]. Its canonical
pickup point is http://github.com/ln5/twisted-socks . It's licensed
under a BSD license, see LICENSE for details.twisted-socks was written mid 2011. Since then txsocksx [1] has
appeared. txsocks seems like a good alternative to twisted-socks. It
looks clean, seems to have support for SOCKS5 and does have tests.[0] https://twistedmatrix.com/
[1] https://github.com/habnabit/txsocksx/