shellscrape renamed to shellsocked, sockhub made concurrent (props agathanonymous), no hardcoded scraping urls, read from file/url now.

This commit is contained in:
Dionysus 2023-11-08 19:17:06 -05:00
parent 3d5838b0fa
commit 3cc0558cc5
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 0 additions and 12 deletions

12
test.py
View File

@ -1,12 +0,0 @@
found = dict()
data = open('ports.txt').read()
for item in data.split('\n'):
if item in found:
found[item] += 1
else:
found[item] = 1
for item in found:
if found[item] > 50:
print(item.ljust(10) + str(found[item]))