Skip to content
/ torpy Public
forked from stef/torpy

tool and python module to manipulate tor hidden services

Notifications You must be signed in to change notification settings

dnet/torpy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Torpy - a hidden service controller and py module

run torpy from the commandline:

torpy list
torpy status <service>
torpy start <service> <host:port> <serviceport>
torpy stop <service>"

or use it from python:

tp=Torpy(passphrase)
# list services
tp.list()
# check if test_service is running
print "running" if tp.status("test_service") else "not running"
# start test_service
tp.start("test_service","localhost:80","80")
# check again
print "running" if tp.status("test_service") else "not running"
# stop service
tp.stop("test_service")
# don't forget to close the control connection
tp.close()

About

tool and python module to manipulate tor hidden services

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Python 100.0%