We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92ed03a commit 5ce68a8Copy full SHA for 5ce68a8
favUp.py
@@ -178,6 +178,7 @@ def run(self):
178
for w in self.webList:
179
self._iterator.set_description(f"[+] iterating over domains | processing {w}")
180
self._iterator.update(1)
181
+ _fH = "not-found"
182
try:
183
headers = {
184
"User-Agent": self.get_user_agent(),
@@ -187,8 +188,6 @@ def run(self):
187
188
data = self.searchFaviconHTML(f"https://{w}")
189
if not isinstance(data, str):
190
_fH = self.faviconHash(data.content, web_source=True)
- else:
191
- _fH = "not-found"
192
except requests.exceptions.ConnectionError:
193
self._iterator.write(f"[x] Connection refused by {w}.")
194
if len(self.webList) == 1:
0 commit comments