waymore 8.2__py3-none-any.whl → 8.4__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 +1 -1
- waymore/waymore.py +115 -51
- {waymore-8.2.dist-info → waymore-8.4.dist-info}/METADATA +2 -2
- waymore-8.4.dist-info/RECORD +8 -0
- waymore-8.2.dist-info/RECORD +0 -8
- {waymore-8.2.dist-info → waymore-8.4.dist-info}/WHEEL +0 -0
- {waymore-8.2.dist-info → waymore-8.4.dist-info}/entry_points.txt +0 -0
- {waymore-8.2.dist-info → waymore-8.4.dist-info}/licenses/LICENSE +0 -0
- {waymore-8.2.dist-info → waymore-8.4.dist-info}/top_level.txt +0 -0
waymore/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "8.
|
|
1
|
+
__version__ = "8.4"
|
waymore/waymore.py
CHANGED
|
@@ -3188,13 +3188,21 @@ def getAlienVaultUrls():
|
|
|
3188
3188
|
)
|
|
3189
3189
|
|
|
3190
3190
|
if not args.check_only:
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3191
|
+
if linksFoundAlienVault is not None:
|
|
3192
|
+
linkCountAlienVault = len(linksFoundAlienVault)
|
|
3193
|
+
write(
|
|
3194
|
+
colored("AlienVault - [ INFO ] Links found on alienvault.com: ", "cyan")
|
|
3195
|
+
+ colored(str(linkCountAlienVault), "white")
|
|
3196
|
+
)
|
|
3197
|
+
if linksFound is not None:
|
|
3198
|
+
linksFound.update(linksFoundAlienVault)
|
|
3199
|
+
linksFoundAlienVault.clear()
|
|
3200
|
+
else:
|
|
3201
|
+
linkCountAlienVault = 0
|
|
3202
|
+
write(
|
|
3203
|
+
colored("AlienVault - [ INFO ] Links found on alienvault.com: ", "cyan")
|
|
3204
|
+
+ colored("0", "white")
|
|
3205
|
+
)
|
|
3198
3206
|
|
|
3199
3207
|
except Exception as e:
|
|
3200
3208
|
writerr(colored("ERROR getAlienVaultUrls 1: " + str(e), "red"))
|
|
@@ -3294,7 +3302,8 @@ def processURLScanUrl(url, httpCode, mimeType, urlscanID=""):
|
|
|
3294
3302
|
if verbose():
|
|
3295
3303
|
if mimeType.strip() != "":
|
|
3296
3304
|
with links_lock:
|
|
3297
|
-
linkMimes
|
|
3305
|
+
if linkMimes is not None:
|
|
3306
|
+
linkMimes.add(mimeType)
|
|
3298
3307
|
|
|
3299
3308
|
# Add link if it passed filters
|
|
3300
3309
|
if addLink:
|
|
@@ -3314,6 +3323,9 @@ def processURLScanUrl(url, httpCode, mimeType, urlscanID=""):
|
|
|
3314
3323
|
)
|
|
3315
3324
|
if match is not None:
|
|
3316
3325
|
if args.mode in ("U", "B"):
|
|
3326
|
+
# Ensure linksFoundURLScan is initialized (can be None during concurrent execution)
|
|
3327
|
+
if linksFoundURLScan is None:
|
|
3328
|
+
linksFoundURLScan = set()
|
|
3317
3329
|
linksFoundAdd(url, linksFoundURLScan)
|
|
3318
3330
|
# If Response mode is requested then add the DOM ID to try later, for the number of responses wanted
|
|
3319
3331
|
if urlscanID != "" and args.mode in ("R", "B"):
|
|
@@ -4494,7 +4506,7 @@ def getURLScanUrls():
|
|
|
4494
4506
|
stopSourceURLScan = True
|
|
4495
4507
|
|
|
4496
4508
|
# Show the MIME types found (in case user wants to exclude more)
|
|
4497
|
-
if verbose() and len(linkMimes) > 0 and args.mode != "R":
|
|
4509
|
+
if verbose() and linkMimes is not None and len(linkMimes) > 0 and args.mode != "R":
|
|
4498
4510
|
linkMimes.discard("warc/revisit")
|
|
4499
4511
|
write(
|
|
4500
4512
|
colored("URLScan - [ INFO ] MIME types found: ", "magenta")
|
|
@@ -4503,13 +4515,21 @@ def getURLScanUrls():
|
|
|
4503
4515
|
)
|
|
4504
4516
|
|
|
4505
4517
|
if args.mode != "R":
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4518
|
+
if linksFoundURLScan is not None:
|
|
4519
|
+
linkCountURLScan = len(linksFoundURLScan)
|
|
4520
|
+
write(
|
|
4521
|
+
colored("URLScan - [ INFO ] Links found on urlscan.io: ", "cyan")
|
|
4522
|
+
+ colored(str(linkCountURLScan), "white")
|
|
4523
|
+
)
|
|
4524
|
+
if linksFound is not None:
|
|
4525
|
+
linksFound.update(linksFoundURLScan)
|
|
4526
|
+
linksFoundURLScan.clear()
|
|
4527
|
+
else:
|
|
4528
|
+
linkCountURLScan = 0
|
|
4529
|
+
write(
|
|
4530
|
+
colored("URLScan - [ INFO ] Links found on urlscan.io: ", "cyan")
|
|
4531
|
+
+ colored("0", "white")
|
|
4532
|
+
)
|
|
4513
4533
|
|
|
4514
4534
|
except Exception as e:
|
|
4515
4535
|
writerr(colored("ERROR getURLScanUrls 1: " + str(e), "red"))
|
|
@@ -4973,7 +4993,7 @@ def getWaybackUrls():
|
|
|
4973
4993
|
p.join()
|
|
4974
4994
|
|
|
4975
4995
|
# Show the MIME types found (in case user wants to exclude more)
|
|
4976
|
-
if verbose() and len(linkMimes) > 0:
|
|
4996
|
+
if verbose() and linkMimes is not None and len(linkMimes) > 0:
|
|
4977
4997
|
linkMimes.discard("warc/revisit")
|
|
4978
4998
|
write(
|
|
4979
4999
|
colored("Wayback - [ INFO ] MIME types found: ", "magenta")
|
|
@@ -4983,15 +5003,27 @@ def getWaybackUrls():
|
|
|
4983
5003
|
linkMimes = None
|
|
4984
5004
|
|
|
4985
5005
|
if not args.xwm:
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
5006
|
+
if linksFoundWayback is not None:
|
|
5007
|
+
linkCountWayback = len(linksFoundWayback)
|
|
5008
|
+
write(
|
|
5009
|
+
colored(
|
|
5010
|
+
"Wayback - [ INFO ] Links found on Wayback Machine (archive.org): ",
|
|
5011
|
+
"cyan",
|
|
5012
|
+
)
|
|
5013
|
+
+ colored(str(linkCountWayback), "white")
|
|
5014
|
+
)
|
|
5015
|
+
if linksFound is not None:
|
|
5016
|
+
linksFound.update(linksFoundWayback)
|
|
5017
|
+
linksFoundWayback.clear()
|
|
5018
|
+
else:
|
|
5019
|
+
linkCountWayback = 0
|
|
5020
|
+
write(
|
|
5021
|
+
colored(
|
|
5022
|
+
"Wayback - [ INFO ] Links found on Wayback Machine (archive.org): ",
|
|
5023
|
+
"cyan",
|
|
5024
|
+
)
|
|
5025
|
+
+ colored("0", "white")
|
|
4990
5026
|
)
|
|
4991
|
-
+ colored(str(linkCountWayback), "white")
|
|
4992
|
-
)
|
|
4993
|
-
linksFound.update(linksFoundWayback)
|
|
4994
|
-
linksFoundWayback.clear()
|
|
4995
5027
|
|
|
4996
5028
|
except Exception as e:
|
|
4997
5029
|
writerr(colored("ERROR getWaybackUrls 1: " + str(e), "red"))
|
|
@@ -5449,7 +5481,7 @@ def getCommonCrawlUrls():
|
|
|
5449
5481
|
p.join()
|
|
5450
5482
|
|
|
5451
5483
|
# Show the MIME types found (in case user wants to exclude more)
|
|
5452
|
-
if verbose() and len(linkMimes) > 0:
|
|
5484
|
+
if verbose() and linkMimes is not None and len(linkMimes) > 0:
|
|
5453
5485
|
linkMimes.discard("warc/revisit")
|
|
5454
5486
|
write(
|
|
5455
5487
|
colored("CommonCrawl - [ INFO ] MIME types found: ", "magenta")
|
|
@@ -5457,13 +5489,21 @@ def getCommonCrawlUrls():
|
|
|
5457
5489
|
+ "\n"
|
|
5458
5490
|
)
|
|
5459
5491
|
|
|
5460
|
-
|
|
5461
|
-
|
|
5462
|
-
|
|
5463
|
-
|
|
5464
|
-
|
|
5465
|
-
|
|
5466
|
-
|
|
5492
|
+
if linksFoundCommonCrawl is not None:
|
|
5493
|
+
linkCountCommonCrawl = len(linksFoundCommonCrawl)
|
|
5494
|
+
write(
|
|
5495
|
+
colored("CommonCrawl - [ INFO ] Links found on commoncrawl.org: ", "cyan")
|
|
5496
|
+
+ colored(str(linkCountCommonCrawl), "white")
|
|
5497
|
+
)
|
|
5498
|
+
if linksFound is not None:
|
|
5499
|
+
linksFound.update(linksFoundCommonCrawl)
|
|
5500
|
+
linksFoundCommonCrawl.clear()
|
|
5501
|
+
else:
|
|
5502
|
+
linkCountCommonCrawl = 0
|
|
5503
|
+
write(
|
|
5504
|
+
colored("CommonCrawl - [ INFO ] Links found on commoncrawl.org: ", "cyan")
|
|
5505
|
+
+ colored("0", "white")
|
|
5506
|
+
)
|
|
5467
5507
|
|
|
5468
5508
|
except Exception as e:
|
|
5469
5509
|
writerr(colored("ERROR getCommonCrawlUrls 1: " + str(e), "red"))
|
|
@@ -5678,13 +5718,21 @@ def getVirusTotalUrls():
|
|
|
5678
5718
|
processVirusTotalUrl(url)
|
|
5679
5719
|
|
|
5680
5720
|
# Show links found
|
|
5681
|
-
|
|
5682
|
-
|
|
5683
|
-
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5721
|
+
if linksFoundVirusTotal is not None:
|
|
5722
|
+
linkCountVirusTotal = len(linksFoundVirusTotal)
|
|
5723
|
+
write(
|
|
5724
|
+
colored("VirusTotal - [ INFO ] Links found on virustotal.com: ", "cyan")
|
|
5725
|
+
+ colored(str(linkCountVirusTotal), "white")
|
|
5726
|
+
)
|
|
5727
|
+
if linksFound is not None:
|
|
5728
|
+
linksFound.update(linksFoundVirusTotal)
|
|
5729
|
+
linksFoundVirusTotal.clear()
|
|
5730
|
+
else:
|
|
5731
|
+
linkCountVirusTotal = 0
|
|
5732
|
+
write(
|
|
5733
|
+
colored("VirusTotal - [ INFO ] Links found on virustotal.com: ", "cyan")
|
|
5734
|
+
+ colored("0", "white")
|
|
5735
|
+
)
|
|
5688
5736
|
|
|
5689
5737
|
except Exception as e:
|
|
5690
5738
|
writerr(colored(f"ERROR getVirusTotalUrls: {e}", "red"))
|
|
@@ -6001,13 +6049,21 @@ def getIntelxUrls():
|
|
|
6001
6049
|
if not intelxAPIIssue:
|
|
6002
6050
|
processIntelxType(3, credits)
|
|
6003
6051
|
|
|
6004
|
-
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
|
|
6052
|
+
if linksFoundIntelx is not None:
|
|
6053
|
+
linkCountIntelx = len(linksFoundIntelx)
|
|
6054
|
+
write(
|
|
6055
|
+
colored("IntelX - [ INFO ] Links found on intelx.io: ", "cyan")
|
|
6056
|
+
+ colored(str(linkCountIntelx), "white")
|
|
6057
|
+
)
|
|
6058
|
+
if linksFound is not None:
|
|
6059
|
+
linksFound.update(linksFoundIntelx)
|
|
6060
|
+
linksFoundIntelx.clear()
|
|
6061
|
+
else:
|
|
6062
|
+
linkCountIntelx = 0
|
|
6063
|
+
write(
|
|
6064
|
+
colored("IntelX - [ INFO ] Links found on intelx.io: ", "cyan")
|
|
6065
|
+
+ colored("0", "white")
|
|
6066
|
+
)
|
|
6011
6067
|
|
|
6012
6068
|
except Exception as e:
|
|
6013
6069
|
writerr(colored("ERROR getIntelxUrls 1: " + str(e), "red"))
|
|
@@ -6292,15 +6348,23 @@ def getGhostArchiveUrls():
|
|
|
6292
6348
|
if not args.check_only:
|
|
6293
6349
|
# Count links based on mode - in R mode, count response links; in U/B mode, count URL links
|
|
6294
6350
|
if args.mode == "R":
|
|
6295
|
-
|
|
6351
|
+
if ghostArchiveRequestLinks is not None:
|
|
6352
|
+
linkCountGhostArchive = len(ghostArchiveRequestLinks)
|
|
6353
|
+
else:
|
|
6354
|
+
linkCountGhostArchive = 0
|
|
6296
6355
|
else:
|
|
6297
|
-
|
|
6356
|
+
if linksFoundGhostArchive is not None:
|
|
6357
|
+
linkCountGhostArchive = len(linksFoundGhostArchive)
|
|
6358
|
+
else:
|
|
6359
|
+
linkCountGhostArchive = 0
|
|
6298
6360
|
write(
|
|
6299
6361
|
colored("GhostArchive - [ INFO ] Links found on ghostarchive.org: ", "cyan")
|
|
6300
6362
|
+ colored(str(linkCountGhostArchive), "white")
|
|
6301
6363
|
)
|
|
6302
|
-
|
|
6303
|
-
|
|
6364
|
+
if linksFoundGhostArchive is not None:
|
|
6365
|
+
if linksFound is not None:
|
|
6366
|
+
linksFound.update(linksFoundGhostArchive)
|
|
6367
|
+
linksFoundGhostArchive.clear()
|
|
6304
6368
|
|
|
6305
6369
|
except Exception as e:
|
|
6306
6370
|
writerr(colored("ERROR getGhostArchiveUrls 1: " + str(e), "red"))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: waymore
|
|
3
|
-
Version: 8.
|
|
3
|
+
Version: 8.4
|
|
4
4
|
Summary: Find way more from the Wayback Machine, Common Crawl, Alien Vault OTX, URLScan, VirusTotal & Intelligence X!
|
|
5
5
|
Home-page: https://github.com/xnl-h4ck3r/waymore
|
|
6
6
|
Author: xnl-h4ck3r
|
|
@@ -21,7 +21,7 @@ Dynamic: license-file
|
|
|
21
21
|
|
|
22
22
|
<center><img src="https://github.com/xnl-h4ck3r/waymore/blob/main/waymore/images/title.png"></center>
|
|
23
23
|
|
|
24
|
-
## About - v8.
|
|
24
|
+
## About - v8.4
|
|
25
25
|
|
|
26
26
|
The idea behind **waymore** is to find even more links from the Wayback Machine (plus other sources) than other existing tools.
|
|
27
27
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
waymore/__init__.py,sha256=LL2kdR1CKkqOmHjhWfoA7ZqOcraT5pIPKwb0zBbg3dA,21
|
|
2
|
+
waymore/waymore.py,sha256=WX3JGiuDBDkZYRRf1zE_AVpASaSRK1DhWX29sOcygw8,364459
|
|
3
|
+
waymore-8.4.dist-info/licenses/LICENSE,sha256=o_jq62xZ1YxI8tqzQKbNtqr3RW2i5sh0rk6ixCJEroU,1068
|
|
4
|
+
waymore-8.4.dist-info/METADATA,sha256=Vw4Tms-E6lYzkyr8NvBkJ9xYZWHqaVNN42GOzLMQ6Sw,54223
|
|
5
|
+
waymore-8.4.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
+
waymore-8.4.dist-info/entry_points.txt,sha256=YHy5EUf3r_7OTkt9jvylLjNeg7Z5yvIVm5RUAyfNcN4,49
|
|
7
|
+
waymore-8.4.dist-info/top_level.txt,sha256=RFTphkWaRu1N7lUWIPUjabgCPQ3ETmNllF7qze4JJ_s,8
|
|
8
|
+
waymore-8.4.dist-info/RECORD,,
|
waymore-8.2.dist-info/RECORD
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
waymore/__init__.py,sha256=2foLKfyOKthgtKMgXiATf2xYq4Dyc-ThTZtvyOyLM9I,21
|
|
2
|
-
waymore/waymore.py,sha256=6jieoU7gzTXrqWTBSwU3r0duH-5R4XpbLEsqmZio3DY,361369
|
|
3
|
-
waymore-8.2.dist-info/licenses/LICENSE,sha256=o_jq62xZ1YxI8tqzQKbNtqr3RW2i5sh0rk6ixCJEroU,1068
|
|
4
|
-
waymore-8.2.dist-info/METADATA,sha256=hFCSjii_ftfXba3VdYPoX-lvp0wbmdMeeieKX88egMs,54223
|
|
5
|
-
waymore-8.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
-
waymore-8.2.dist-info/entry_points.txt,sha256=YHy5EUf3r_7OTkt9jvylLjNeg7Z5yvIVm5RUAyfNcN4,49
|
|
7
|
-
waymore-8.2.dist-info/top_level.txt,sha256=RFTphkWaRu1N7lUWIPUjabgCPQ3ETmNllF7qze4JJ_s,8
|
|
8
|
-
waymore-8.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|