some windows binaries, git commit finder

This commit is contained in:
2021-11-14 15:24:24 +01:00
parent 3ea1cba7ca
commit 12af2f80b7
13 changed files with 243 additions and 35 deletions

View File

@@ -154,8 +154,8 @@ def collectUrls(input):
input = BeautifulSoup(input, "html.parser")
urls = set()
attrs = ["src","href"]
tags = ["a","link","script","img"]
attrs = ["src","href","action"]
tags = ["a","link","script","img","form"]
for tag in tags:
for e in input.find_all(tag):