waymore 5.0__tar.gz → 5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {waymore-5.0/waymore.egg-info → waymore-5.1}/PKG-INFO +2 -2
- {waymore-5.0 → waymore-5.1}/README.md +1 -1
- waymore-5.1/waymore/__init__.py +1 -0
- {waymore-5.0 → waymore-5.1}/waymore/waymore.py +5 -3
- {waymore-5.0 → waymore-5.1/waymore.egg-info}/PKG-INFO +2 -2
- waymore-5.0/waymore/__init__.py +0 -1
- {waymore-5.0 → waymore-5.1}/LICENSE +0 -0
- {waymore-5.0 → waymore-5.1}/setup.cfg +0 -0
- {waymore-5.0 → waymore-5.1}/setup.py +0 -0
- {waymore-5.0 → waymore-5.1}/waymore.egg-info/SOURCES.txt +0 -0
- {waymore-5.0 → waymore-5.1}/waymore.egg-info/dependency_links.txt +0 -0
- {waymore-5.0 → waymore-5.1}/waymore.egg-info/entry_points.txt +0 -0
- {waymore-5.0 → waymore-5.1}/waymore.egg-info/requires.txt +0 -0
- {waymore-5.0 → waymore-5.1}/waymore.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: waymore
|
|
3
|
-
Version: 5.
|
|
3
|
+
Version: 5.1
|
|
4
4
|
Summary: Find way more from the Wayback Machine, Common Crawl, Alien Vault OTX, URLScan & VirusTotal!
|
|
5
5
|
Home-page: https://github.com/xnl-h4ck3r/waymore
|
|
6
6
|
Author: @xnl-h4ck3r
|
|
@@ -15,7 +15,7 @@ Requires-Dist: tldextract
|
|
|
15
15
|
|
|
16
16
|
<center><img src="https://github.com/xnl-h4ck3r/waymore/blob/main/waymore/images/title.png"></center>
|
|
17
17
|
|
|
18
|
-
## About - v5.
|
|
18
|
+
## About - v5.1
|
|
19
19
|
|
|
20
20
|
The idea behind **waymore** is to find even more links from the Wayback Machine than other existing tools.
|
|
21
21
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__="5.1"
|
|
@@ -1316,7 +1316,7 @@ def validateArgProviders(x):
|
|
|
1316
1316
|
invalid = True
|
|
1317
1317
|
break
|
|
1318
1318
|
if invalid:
|
|
1319
|
-
raise argparse.ArgumentTypeError('Pass providers separated by a comma, e.g. wayback,commoncrawl,otx,urlscan,virustotal')
|
|
1319
|
+
raise argparse.ArgumentTypeError('Pass providers separated by a comma, e.g. wayback,commoncrawl,otx,urlscan,virustotal,intelx')
|
|
1320
1320
|
return x
|
|
1321
1321
|
|
|
1322
1322
|
def processAlienVaultPage(url):
|
|
@@ -1638,7 +1638,10 @@ def getURLScanUrls():
|
|
|
1638
1638
|
# Get the first page from urlscan.io
|
|
1639
1639
|
try:
|
|
1640
1640
|
# Choose a random user agent string to use for any requests
|
|
1641
|
-
|
|
1641
|
+
# For other sources we would use `random.choice(USER_AGENT)` to asignn a random user-agent, but it seems
|
|
1642
|
+
# that there are a handful of those that ALWAYS return 429. Passing a specific one all the time seems to
|
|
1643
|
+
# be successful all the time
|
|
1644
|
+
userAgent = "waymore by xnl-h4ck3r"
|
|
1642
1645
|
session = requests.Session()
|
|
1643
1646
|
session.mount('https://', HTTP_ADAPTER)
|
|
1644
1647
|
session.mount('http://', HTTP_ADAPTER)
|
|
@@ -1789,7 +1792,6 @@ def getURLScanUrls():
|
|
|
1789
1792
|
# Get the next page from urlscan.io
|
|
1790
1793
|
try:
|
|
1791
1794
|
# Choose a random user agent string to use for any requests
|
|
1792
|
-
userAgent = random.choice(USER_AGENT)
|
|
1793
1795
|
session = requests.Session()
|
|
1794
1796
|
session.mount('https://', HTTP_ADAPTER)
|
|
1795
1797
|
session.mount('http://', HTTP_ADAPTER)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: waymore
|
|
3
|
-
Version: 5.
|
|
3
|
+
Version: 5.1
|
|
4
4
|
Summary: Find way more from the Wayback Machine, Common Crawl, Alien Vault OTX, URLScan & VirusTotal!
|
|
5
5
|
Home-page: https://github.com/xnl-h4ck3r/waymore
|
|
6
6
|
Author: @xnl-h4ck3r
|
|
@@ -15,7 +15,7 @@ Requires-Dist: tldextract
|
|
|
15
15
|
|
|
16
16
|
<center><img src="https://github.com/xnl-h4ck3r/waymore/blob/main/waymore/images/title.png"></center>
|
|
17
17
|
|
|
18
|
-
## About - v5.
|
|
18
|
+
## About - v5.1
|
|
19
19
|
|
|
20
20
|
The idea behind **waymore** is to find even more links from the Wayback Machine than other existing tools.
|
|
21
21
|
|
waymore-5.0/waymore/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__="5.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|