waymore 5.0__py3-none-any.whl → 5.1__py3-none-any.whl

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/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__="5.0"
1
+ __version__="5.1"
waymore/waymore.py CHANGED
@@ -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
- userAgent = random.choice(USER_AGENT)
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.0
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.0
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,8 @@
1
+ waymore/__init__.py,sha256=X4ON0rponPxoQ0b-Wv7zvwCPFlzC2oSmg_nHdJmpyis,17
2
+ waymore/waymore.py,sha256=sG4cpeFN0cOfO06AgetlTbs20fVUbpxQr4g_RuHAlaw,188638
3
+ waymore-5.1.dist-info/LICENSE,sha256=o_jq62xZ1YxI8tqzQKbNtqr3RW2i5sh0rk6ixCJEroU,1068
4
+ waymore-5.1.dist-info/METADATA,sha256=npHpoTL5ceG210zvaBtXHVSfWqE2Gh_ekR_beYLTRx0,50674
5
+ waymore-5.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
6
+ waymore-5.1.dist-info/entry_points.txt,sha256=YHy5EUf3r_7OTkt9jvylLjNeg7Z5yvIVm5RUAyfNcN4,49
7
+ waymore-5.1.dist-info/top_level.txt,sha256=RFTphkWaRu1N7lUWIPUjabgCPQ3ETmNllF7qze4JJ_s,8
8
+ waymore-5.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.3.0)
2
+ Generator: setuptools (75.3.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,8 +0,0 @@
1
- waymore/__init__.py,sha256=3ieKgiJ6rlcZ-PeRqvAnIHr4Fd3wcow96vxuVuv4FB8,17
2
- waymore/waymore.py,sha256=nBxoAWNUG-dbblf7eAM8W88WZgFct6frt2t1u4FTVgc,188425
3
- waymore-5.0.dist-info/LICENSE,sha256=o_jq62xZ1YxI8tqzQKbNtqr3RW2i5sh0rk6ixCJEroU,1068
4
- waymore-5.0.dist-info/METADATA,sha256=ekgMxAELrb9zzoPSd0mGl4DGZ_1Gzwwl_jC5U9V-Vsg,50674
5
- waymore-5.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
6
- waymore-5.0.dist-info/entry_points.txt,sha256=YHy5EUf3r_7OTkt9jvylLjNeg7Z5yvIVm5RUAyfNcN4,49
7
- waymore-5.0.dist-info/top_level.txt,sha256=RFTphkWaRu1N7lUWIPUjabgCPQ3ETmNllF7qze4JJ_s,8
8
- waymore-5.0.dist-info/RECORD,,
File without changes