socksio


Namesocksio JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/sethmlarson/socksio
SummarySans-I/O implementation of SOCKS4, SOCKS4A, and SOCKS5.
upload_time2020-04-17 15:50:34
maintainer
docs_urlNone
authorSeth Michael Larson
requires_python>=3.6
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # SOCKSIO

[![Build Status](https://travis-ci.org/sethmlarson/socksio.svg?branch=master)](https://travis-ci.org/sethmlarson/socksio)
[![codecov](https://codecov.io/gh/sethmlarson/socksio/branch/master/graph/badge.svg)](https://codecov.io/gh/sethmlarson/socksio)
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/socksio.svg)](https://pypi.org/project/socksio)
[![PyPI](https://img.shields.io/pypi/v/socksio.svg)](https://pypi.org/project/socksio)

Client-side sans-I/O SOCKS proxy implementation.
Supports SOCKS4, SOCKS4A, and SOCKS5.

`socksio` is a sans-I/O library similar to
[`h11`](https://github.com/python-hyper/h11) or
[`h2`](https://github.com/python-hyper/hyper-h2/), this means the library itself
does not handle the actual sending of the bytes through the network, it only
deals with the implementation details of the SOCKS protocols so you can use
it in any I/O library you want.

## Current status: stable

Features not yet implemented:

- SOCKS5 GSS-API authentication.
- SOCKS5 UDP associate requests.

## Usage

TL;DR check the [examples directory](examples/).

Being sans-I/O means that in order to test `socksio` you need an I/O library.
And the most basic I/O is, of course, the standard library's `socket` module.

You'll need to know ahead of time the type of SOCKS proxy you want to connect
to. Assuming we have a SOCKS4 proxy running in our machine on port 8080, we
will first create a connection to it:

```python
import socket

sock = socket.create_connection(("localhost", 8080))
```

`socksio` exposes modules for SOCKS4, SOCKS4A and SOCKS5, each of them includes
a `Connection` class:

```python
from socksio import socks4

# The SOCKS4 protocol requires a `user_id` to be supplied.
conn = socks4.SOCKS4Connection(user_id=b"socksio")
```

Since `socksio` is a sans-I/O library, we will use the socket to send and
receive data to our SOCKS4 proxy. The raw data, however, will be created and
parsed by our `SOCKS4Connection`.

We need to tell our connection we want to make a request to the proxy. We do
that by first creating a request object.

In SOCKS4 we only need to send a command along with an IP address and port.
`socksio` exposes the different types of commands as enumerables and a
convenience `from_address` class method in the request classes to create a
valid request object:

```python
# SOCKS4 does not allow domain names, below is an IP for google.com
request = socks4.SOCKS4Request.from_address(
    socks4.SOCKS4Command.CONNECT, ("216.58.204.78", 80))
```

`from_address` methods are available on all request classes in `socksio`, they
accept addresses as tuples of `(address, port)` as well as string `address:port`.

Now we ask the connection to send our request:

```python
conn.send(request)
```

The `SOCKS4Connection` will then compose the necessary `bytes` in the proper
format for us to send to our proxy:

```python
data = conn.data_to_send()
sock.sendall(data)
```

If all goes well the proxy will have sent reply, we just need to read from the
socket and pass the data to the `SOCKS4Connection`:

```python
data = sock.recv(1024)
event = conn.receive_data(data)
```

The connection will parse the data and return an event from it, in this case, a
`SOCKS4Reply` that includes attributes for the fields in the SOCKS reply:

```python
if event.reply_code != socks4.SOCKS4ReplyCode.REQUEST_GRANTED:
    raise Exception(
        "Server could not connect to remote host: {}".format(event.reply_code)
    )
```

If all went well the connection has been established correctly and we can
start sending our request directly to the proxy:

```python
sock.sendall(b"GET / HTTP/1.1\r\nhost: google.com\r\n\r\n")
data = receive_data(sock)
print(data)
# b'HTTP/1.1 301 Moved Permanently\r\nLocation: http://www.google.com/...`
```

The same methodology is used for all protocols, check out the
[examples directory](https://github.com/sethmlarson/socksio/tree/master/examples/)
for more information.

## Development

Install the test requirements with `pip install -r test-requirements.txt`.

Install the project in pseudo-editable mode with `flit install -s`.

Tests can be ran directly invoking `pytest`.

This project uses [`nox`](https://nox.thea.codes/en/stable/) to automate
testing and linting tasks. `nox` is installed as part of the test requirements.
Invoking `nox` will run all sessions, but you may also run only some them, for
example `nox -s lint` will only run the linting session.

In order to test against a live proxy server a Docker setup is provided based
on the [`Dante`](https://www.inet.no/dante/) SOCKS server.

A container will start `danted` listening on port 1080. The docker-compose.yml
will start the container and map the ports appropriately. To start the container
in the background:

```
docker-compose -f docker/docker-compose.yml up -d
```

To stop it:

```
docker-compose -f docker/docker-compose.yml down
```

Alternatively, remove the `-d` flag to run the containers in the foreground.

## Reference documents

Each implementation follows the documents as listed below:

- SOCKS4: https://www.openssh.com/txt/socks4.protocol
- SOCKS4A: https://www.openssh.com/txt/socks4a.protocol
- SOCKS5: https://www.ietf.org/rfc/rfc1928.txt
- SOCKS5 username/password authentication: https://www.ietf.org/rfc/rfc1929.txt
- SOCKS5 GSS-API authentication: https://www.ietf.org/rfc/rfc1961.txt

## License

MIT

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/sethmlarson/socksio",
    "name": "socksio",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "Seth Michael Larson",
    "author_email": "sethmichaellarson@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/f8/5c/48a7d9495be3d1c651198fd99dbb6ce190e2274d0f28b9051307bdec6b85/socksio-1.0.0.tar.gz",
    "platform": "",
    "description": "# SOCKSIO\n\n[![Build Status](https://travis-ci.org/sethmlarson/socksio.svg?branch=master)](https://travis-ci.org/sethmlarson/socksio)\n[![codecov](https://codecov.io/gh/sethmlarson/socksio/branch/master/graph/badge.svg)](https://codecov.io/gh/sethmlarson/socksio)\n[![Supported Python Versions](https://img.shields.io/pypi/pyversions/socksio.svg)](https://pypi.org/project/socksio)\n[![PyPI](https://img.shields.io/pypi/v/socksio.svg)](https://pypi.org/project/socksio)\n\nClient-side sans-I/O SOCKS proxy implementation.\nSupports SOCKS4, SOCKS4A, and SOCKS5.\n\n`socksio` is a sans-I/O library similar to\n[`h11`](https://github.com/python-hyper/h11) or\n[`h2`](https://github.com/python-hyper/hyper-h2/), this means the library itself\ndoes not handle the actual sending of the bytes through the network, it only\ndeals with the implementation details of the SOCKS protocols so you can use\nit in any I/O library you want.\n\n## Current status: stable\n\nFeatures not yet implemented:\n\n- SOCKS5 GSS-API authentication.\n- SOCKS5 UDP associate requests.\n\n## Usage\n\nTL;DR check the [examples directory](examples/).\n\nBeing sans-I/O means that in order to test `socksio` you need an I/O library.\nAnd the most basic I/O is, of course, the standard library's `socket` module.\n\nYou'll need to know ahead of time the type of SOCKS proxy you want to connect\nto. Assuming we have a SOCKS4 proxy running in our machine on port 8080, we\nwill first create a connection to it:\n\n```python\nimport socket\n\nsock = socket.create_connection((\"localhost\", 8080))\n```\n\n`socksio` exposes modules for SOCKS4, SOCKS4A and SOCKS5, each of them includes\na `Connection` class:\n\n```python\nfrom socksio import socks4\n\n# The SOCKS4 protocol requires a `user_id` to be supplied.\nconn = socks4.SOCKS4Connection(user_id=b\"socksio\")\n```\n\nSince `socksio` is a sans-I/O library, we will use the socket to send and\nreceive data to our SOCKS4 proxy. The raw data, however, will be created and\nparsed by our `SOCKS4Connection`.\n\nWe need to tell our connection we want to make a request to the proxy. We do\nthat by first creating a request object.\n\nIn SOCKS4 we only need to send a command along with an IP address and port.\n`socksio` exposes the different types of commands as enumerables and a\nconvenience `from_address` class method in the request classes to create a\nvalid request object:\n\n```python\n# SOCKS4 does not allow domain names, below is an IP for google.com\nrequest = socks4.SOCKS4Request.from_address(\n    socks4.SOCKS4Command.CONNECT, (\"216.58.204.78\", 80))\n```\n\n`from_address` methods are available on all request classes in `socksio`, they\naccept addresses as tuples of `(address, port)` as well as string `address:port`.\n\nNow we ask the connection to send our request:\n\n```python\nconn.send(request)\n```\n\nThe `SOCKS4Connection` will then compose the necessary `bytes` in the proper\nformat for us to send to our proxy:\n\n```python\ndata = conn.data_to_send()\nsock.sendall(data)\n```\n\nIf all goes well the proxy will have sent reply, we just need to read from the\nsocket and pass the data to the `SOCKS4Connection`:\n\n```python\ndata = sock.recv(1024)\nevent = conn.receive_data(data)\n```\n\nThe connection will parse the data and return an event from it, in this case, a\n`SOCKS4Reply` that includes attributes for the fields in the SOCKS reply:\n\n```python\nif event.reply_code != socks4.SOCKS4ReplyCode.REQUEST_GRANTED:\n    raise Exception(\n        \"Server could not connect to remote host: {}\".format(event.reply_code)\n    )\n```\n\nIf all went well the connection has been established correctly and we can\nstart sending our request directly to the proxy:\n\n```python\nsock.sendall(b\"GET / HTTP/1.1\\r\\nhost: google.com\\r\\n\\r\\n\")\ndata = receive_data(sock)\nprint(data)\n# b'HTTP/1.1 301 Moved Permanently\\r\\nLocation: http://www.google.com/...`\n```\n\nThe same methodology is used for all protocols, check out the\n[examples directory](https://github.com/sethmlarson/socksio/tree/master/examples/)\nfor more information.\n\n## Development\n\nInstall the test requirements with `pip install -r test-requirements.txt`.\n\nInstall the project in pseudo-editable mode with `flit install -s`.\n\nTests can be ran directly invoking `pytest`.\n\nThis project uses [`nox`](https://nox.thea.codes/en/stable/) to automate\ntesting and linting tasks. `nox` is installed as part of the test requirements.\nInvoking `nox` will run all sessions, but you may also run only some them, for\nexample `nox -s lint` will only run the linting session.\n\nIn order to test against a live proxy server a Docker setup is provided based\non the [`Dante`](https://www.inet.no/dante/) SOCKS server.\n\nA container will start `danted` listening on port 1080. The docker-compose.yml\nwill start the container and map the ports appropriately. To start the container\nin the background:\n\n```\ndocker-compose -f docker/docker-compose.yml up -d\n```\n\nTo stop it:\n\n```\ndocker-compose -f docker/docker-compose.yml down\n```\n\nAlternatively, remove the `-d` flag to run the containers in the foreground.\n\n## Reference documents\n\nEach implementation follows the documents as listed below:\n\n- SOCKS4: https://www.openssh.com/txt/socks4.protocol\n- SOCKS4A: https://www.openssh.com/txt/socks4a.protocol\n- SOCKS5: https://www.ietf.org/rfc/rfc1928.txt\n- SOCKS5 username/password authentication: https://www.ietf.org/rfc/rfc1929.txt\n- SOCKS5 GSS-API authentication: https://www.ietf.org/rfc/rfc1961.txt\n\n## License\n\nMIT\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Sans-I/O implementation of SOCKS4, SOCKS4A, and SOCKS5.",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/sethmlarson/socksio"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37c36eeb6034408dac0fa653d126c9204ade96b819c936e136c5e8a6897eee9c",
                "md5": "6b09624a9e8740cec66d5e098e14870b",
                "sha256": "95dc1f15f9b34e8d7b16f06d74b8ccf48f609af32ab33c608d08761c5dcbb1f3"
            },
            "downloads": -1,
            "filename": "socksio-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6b09624a9e8740cec66d5e098e14870b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 12763,
            "upload_time": "2020-04-17T15:50:31",
            "upload_time_iso_8601": "2020-04-17T15:50:31.878736Z",
            "url": "https://files.pythonhosted.org/packages/37/c3/6eeb6034408dac0fa653d126c9204ade96b819c936e136c5e8a6897eee9c/socksio-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f85c48a7d9495be3d1c651198fd99dbb6ce190e2274d0f28b9051307bdec6b85",
                "md5": "c842dbff834af52dd070ecf297a14337",
                "sha256": "f88beb3da5b5c38b9890469de67d0cb0f9d494b78b106ca1845f96c10b91c4ac"
            },
            "downloads": -1,
            "filename": "socksio-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c842dbff834af52dd070ecf297a14337",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 19055,
            "upload_time": "2020-04-17T15:50:34",
            "upload_time_iso_8601": "2020-04-17T15:50:34.664911Z",
            "url": "https://files.pythonhosted.org/packages/f8/5c/48a7d9495be3d1c651198fd99dbb6ce190e2274d0f28b9051307bdec6b85/socksio-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2020-04-17 15:50:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sethmlarson",
    "github_project": "socksio",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "socksio"
}
        
Elapsed time: 0.09008s