Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-12-03 Thread Philipp Winter
On Sun, Dec 01, 2013 at 05:09:55PM -0800, Damian Johnson wrote: You might want to look into PEP8 [1], Python's de-facto style guide. It's certainly up to you which bits you do/don't like, but coming close will make your code more uniform with the rest of the Python world. PyPI has a slick pep8

Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-11-26 Thread Lunar
Philipp Winter: I now have similar code which is based on stem: https://github.com/NullHypothesis/exitmap However, the problem with a parallel single-Tor-process design is that there is no easy way for scanning modules to figure out which exit relay they were attached to. The Tor

Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-11-26 Thread Philipp Winter
On Tue, Nov 26, 2013 at 03:21:04PM +0100, Lunar wrote: Philipp Winter: I now have similar code which is based on stem: https://github.com/NullHypothesis/exitmap However, the problem with a parallel single-Tor-process design is that there is no easy way for scanning modules to figure out

Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-11-25 Thread Philipp Winter
On Thu, Oct 10, 2013 at 07:23:11AM +, Aaron wrote: I have been working on adding a Tor Network Test Template to ooni-probe; the basic concept is to extend the Tor controller library we use (txtorcon) to be able to build and attach circuits to specific streams, and iterate over the exits in

Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-10-14 Thread meejah
Philipp Winter identity.funct...@gmail.com writes: I assume, your scanning would be sequential? There are many circuits in-flight in the single Tor instance; many outstanding requests are possible. -- meejah ___ tor-dev mailing list

Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-10-11 Thread Fabio Pietrosanti (naif)
Why don't just use OONI and a single Tor instance to do so? I expect it will take much less and you will be able to leverage existing code and exitsting knowledge within the tor project. Fabio Il 10/9/13 11:44 PM, Philipp Winter ha scritto: I am working on a Python-based exit relay scanner

Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-10-10 Thread Aaron
On Wed, Oct 9, 2013 at 9:44 PM, Philipp Winter identity.funct...@gmail.comwrote: I am working on a Python-based exit relay scanner which should detect malicious and misbehaving exits. The design should have a reasonable balance between being fast/parallel and stressing the network as little

Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-10-10 Thread meejah
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Aaron aag...@extc.org writes: I have been working on adding a Tor Network Test Template to ooni-probe; the basic concept is to extend the Tor controller library we use (txtorcon) to be able to build and attach circuits to specific streams, and

Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-10-10 Thread Philipp Winter
On Thu, Oct 10, 2013 at 07:23:11AM +, Aaron wrote: I have been working on adding a Tor Network Test Template to ooni-probe; the basic concept is to extend the Tor controller library we use (txtorcon) to be able to build and attach circuits to specific streams, and iterate over the exits in

Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-10-10 Thread Philipp Winter
On Thu, Oct 10, 2013 at 12:50:32PM +0400, meejah wrote: I have been working on adding a Tor Network Test Template to ooni-probe; the basic concept is to extend the Tor controller library we use (txtorcon) to be able to build and attach circuits to specific streams, and iterate over the exits

Re: [tor-dev] Design for an exit relay scanner: feedback appreciated

2013-10-10 Thread Aaron
On Thu, Oct 10, 2013 at 9:57 AM, Philipp Winter identity.funct...@gmail.com wrote: On Thu, Oct 10, 2013 at 07:23:11AM +, Aaron wrote: I have been working on adding a Tor Network Test Template to ooni-probe; the basic concept is to extend the Tor controller library we use (txtorcon)