From 3cc0558cc534ab484b8145764881c650badc9ac8 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Wed, 8 Nov 2023 19:17:06 -0500 Subject: [PATCH] shellscrape renamed to shellsocked, sockhub made concurrent (props agathanonymous), no hardcoded scraping urls, read from file/url now. --- test.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 test.py diff --git a/test.py b/test.py deleted file mode 100644 index e784bda..0000000 --- a/test.py +++ /dev/null @@ -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]))