GithubHelp home page GithubHelp logo

torgetter's Introduction

torgetter

Concurrent HTTP requests over a pool of replaceable Tor proxies

This creates a pool of tor clients that run simultaneously on a single host, and can be used to make concurrent proxied HTTP requests from multiple IP addresses (each using a different exit node). This can be useful for bypassing IP-based rate limits, for making large numbers of requests without being noticeable as coming from a single IP, and for having access to a pool of proxies in a specific country. Because the connections are over the Tor network, it is relatively slow, but if you aren't in a huge rush and need to make a large number of requests that appear to be coming from hundreds of different IP addresses, this might work for you ...

It abuses the Tor protocol in several ways, namely:

  • deliberately using short Tor circuits to increase speed while breaking "anonymity"
  • manually selecting exit nodes and ensuring that we are not reusing an exit after we dispose of it
  • deliberately limiting to geographically close exit nodes to favor speed over "anonymity"

The Tor network has over 2000 exit nodes, so this gives you quite a large pool of proxy IPs to work with.

Obviously, the decision to use this software would be frowned upon by many in the Tor community and would be seen as "not what the network was intended for". So I'm releasing this for educational purposes only, and want people to be aware that you're probably going to get angry faces from Tor developers if you ask for support modifying the code here ;)

Dependencies:

  • requests[socks]
  • selenium
  • pysocks
  • stem
  • tldextract

Usage example:

Using the requests library for plain HTTP requests:

import TorClientPool
import TorGetter
urls = ['http://en.wikipedia.org'] * 10
pool = TorClientPool.TorClientPool(5)
getter = TorGetter.RequestsTorGetter(urls, pool)
results = getter.fetchConcurrent(10)

Using a collection of headless browsers with Selenium, when you need Javascript rendering, etc:

import TorClientPool
import TorGetter
urls = ['http://en.wikipedia.org'] * 10
pool = TorClientPool.TorClientPool(5)
getter = TorGetter.SeleniumTorGetter(urls, pool)
results = getter.fetchConcurrent(10)

torgetter's People

Contributors

jesswren avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.