what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

getTorExitNode Python Script

getTorExitNode Python Script
Posted Feb 10, 2011
Authored by Sebastien Damaye

getTorExitNode is a tool that aims at providing torproxy (from tortunnel) with a valid Tor exit node. It returns one or all valid Tor exit nodes. Written in Python.

tags | tool, python, peer2peer
SHA-256 | 93f50f1df03039d204ea6ad979133e72a084758137ef36ef12282b90bfb7cb5b

getTorExitNode Python Script

Change Mirror Download
#!/usr/bin/env python
"""
getTorExitNode.py
Rev 1.0
Sebastien Damaye (www.aldeid.com)
2011-02-09

---
This program aims at providing torproxy with a valid Tor exit node.
(Tortunnel can be downloaded here:
http://www.thoughtcrime.org/software/tortunnel/)
It returns one or all valid exit nodes (Nodes must fulfill all
filtering conditions: exit, fast, valid and stable.)

For a usage example, go to:
http://www.aldeid.com/index.php/Tor/Usage/Nmap-scan-through-tor

Usage: ./getTorExitNode.py [--all]

Options:
--all Get all valid exit nodes
Without the --all option, first valid exit node is returned

---
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""

import urllib
import sys
from optparse import OptionParser

class Tor:
def __init__(self, allnodes):
self.allnodes = allnodes

def getTorNodes(self):
f = urllib.urlopen('http://128.31.0.34:9031/tor/status/all')

print "Valid Tor exit node(s) found:"
for i in f:
if i.startswith('r '):
line = i

if i.startswith('s Exit') \
and 'Fast' in i \
and 'Stable' in i \
and 'Valid' in i:
print line.split(" ")[6]

if not self.allnodes:
break

if __name__ == '__main__':
usage = "usage: %prog [--all]"
parser = OptionParser(usage)
parser.add_option("--all", action="store_true",
dest="allnodes", default=False,
help="Return all valid Tor exit nodes")
(options, args) = parser.parse_args(sys.argv)

oTor = Tor(options.allnodes)
oTor.getTorNodes()
del oTor

Login or Register to add favorites

File Archive:

July 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Jul 1st
    27 Files
  • 2
    Jul 2nd
    10 Files
  • 3
    Jul 3rd
    35 Files
  • 4
    Jul 4th
    27 Files
  • 5
    Jul 5th
    18 Files
  • 6
    Jul 6th
    0 Files
  • 7
    Jul 7th
    0 Files
  • 8
    Jul 8th
    28 Files
  • 9
    Jul 9th
    44 Files
  • 10
    Jul 10th
    24 Files
  • 11
    Jul 11th
    25 Files
  • 12
    Jul 12th
    11 Files
  • 13
    Jul 13th
    0 Files
  • 14
    Jul 14th
    0 Files
  • 15
    Jul 15th
    0 Files
  • 16
    Jul 16th
    0 Files
  • 17
    Jul 17th
    0 Files
  • 18
    Jul 18th
    0 Files
  • 19
    Jul 19th
    0 Files
  • 20
    Jul 20th
    0 Files
  • 21
    Jul 21st
    0 Files
  • 22
    Jul 22nd
    0 Files
  • 23
    Jul 23rd
    0 Files
  • 24
    Jul 24th
    0 Files
  • 25
    Jul 25th
    0 Files
  • 26
    Jul 26th
    0 Files
  • 27
    Jul 27th
    0 Files
  • 28
    Jul 28th
    0 Files
  • 29
    Jul 29th
    0 Files
  • 30
    Jul 30th
    0 Files
  • 31
    Jul 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close