We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9651140 commit 399f8e1Copy full SHA for 399f8e1
bin/lib/crawlers.py
@@ -73,10 +73,10 @@
73
def api_get_onion_lookup(domain): # TODO check if object process done ???
74
domain = domain.lower().strip()
75
parts = domain.split('.onion')
76
- if len(parts) > 1:
77
- for word in [part + '.onion' for part in parts[:-1]] + [parts[-1]]:
78
- if len(word) >= 32 and word.endswith('.onion'):
79
- api_get_onion_lookup(word)
+ # if len(parts) > 1:
+ # for word in [part + '.onion' for part in parts[:-1]] + [parts[-1]]:
+ # if len(word) >= 32 and word.endswith('.onion'):
+ # api_get_onion_lookup(word)
80
81
url_unpack = unpack_url(domain)
82
if not url_unpack:
0 commit comments