moriarty-project 0.1.10__py3-none-any.whl → 0.1.12__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.
- moriarty/__init__.py +1 -1
- moriarty/cli/app.py +6 -5
- moriarty/cli/wifippler.py +124 -0
- moriarty/modules/port_scanner.py +5 -1
- moriarty/modules/wifippler/__init__.py +63 -0
- moriarty/modules/wifippler/core/__init__.py +80 -0
- moriarty/modules/wifippler/core/attacks/__init__.py +19 -0
- moriarty/modules/wifippler/core/attacks/deauth.py +340 -0
- moriarty/modules/wifippler/core/attacks/handshake.py +402 -0
- moriarty/modules/wifippler/core/attacks/pmkid.py +424 -0
- moriarty/modules/wifippler/core/attacks/wep.py +467 -0
- moriarty/modules/wifippler/core/attacks/wpa.py +446 -0
- moriarty/modules/wifippler/core/attacks/wps.py +474 -0
- moriarty/modules/wifippler/core/models/__init__.py +10 -0
- moriarty/modules/wifippler/core/models/network.py +216 -0
- moriarty/modules/wifippler/core/scanner.py +901 -0
- moriarty/modules/wifippler/core/utils/__init__.py +612 -0
- moriarty/modules/wifippler/core/utils.py +810 -0
- {moriarty_project-0.1.10.dist-info → moriarty_project-0.1.12.dist-info}/METADATA +47 -35
- {moriarty_project-0.1.10.dist-info → moriarty_project-0.1.12.dist-info}/RECORD +22 -7
- {moriarty_project-0.1.10.dist-info → moriarty_project-0.1.12.dist-info}/WHEEL +0 -0
- {moriarty_project-0.1.10.dist-info → moriarty_project-0.1.12.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: moriarty-project
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.12
|
4
4
|
Summary: Client-side OSINT toolkit with forensic-grade evidence handling.
|
5
5
|
Project-URL: Homepage, https://github.com/DonatoReis/moriarty
|
6
6
|
Project-URL: Documentation, https://github.com/DonatoReis/moriarty#readme
|
@@ -12,44 +12,56 @@ Classifier: License :: OSI Approved :: MIT License
|
|
12
12
|
Classifier: Programming Language :: Python
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
14
14
|
Classifier: Programming Language :: Python :: 3 :: Only
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
15
17
|
Classifier: Programming Language :: Python :: 3.13
|
16
18
|
Classifier: Topic :: Security
|
17
19
|
Classifier: Topic :: Utilities
|
18
|
-
Requires-Python: >=3.
|
19
|
-
Requires-Dist: aiodns
|
20
|
-
Requires-Dist: aiohttp
|
21
|
-
Requires-Dist: aiolimiter
|
22
|
-
Requires-Dist:
|
23
|
-
Requires-Dist: dnspython>=2.
|
24
|
-
Requires-Dist: email-validator
|
25
|
-
Requires-Dist: httpx[http2]
|
26
|
-
Requires-Dist: idna>=3.
|
27
|
-
Requires-Dist: jsonpath-ng
|
28
|
-
Requires-Dist: lxml
|
29
|
-
Requires-Dist:
|
30
|
-
Requires-Dist:
|
31
|
-
Requires-Dist:
|
32
|
-
Requires-Dist:
|
33
|
-
Requires-Dist:
|
34
|
-
Requires-Dist:
|
35
|
-
Requires-Dist:
|
36
|
-
Requires-Dist:
|
37
|
-
Requires-Dist:
|
38
|
-
Requires-Dist:
|
39
|
-
Requires-Dist:
|
40
|
-
Requires-Dist:
|
41
|
-
Requires-Dist:
|
42
|
-
Requires-Dist:
|
43
|
-
Requires-Dist:
|
20
|
+
Requires-Python: >=3.11
|
21
|
+
Requires-Dist: aiodns>=3.0.0
|
22
|
+
Requires-Dist: aiohttp>=3.9.0
|
23
|
+
Requires-Dist: aiolimiter>=1.1.0
|
24
|
+
Requires-Dist: colorama>=0.4.6
|
25
|
+
Requires-Dist: dnspython>=2.5.0
|
26
|
+
Requires-Dist: email-validator>=2.0.0
|
27
|
+
Requires-Dist: httpx[http2]>=0.27.0
|
28
|
+
Requires-Dist: idna>=3.6
|
29
|
+
Requires-Dist: jsonpath-ng>=1.6.0
|
30
|
+
Requires-Dist: lxml>=5.3.0
|
31
|
+
Requires-Dist: netifaces>=0.11.0
|
32
|
+
Requires-Dist: networkx>=3.2.0
|
33
|
+
Requires-Dist: orjson>=3.9.0
|
34
|
+
Requires-Dist: phonenumbers>=8.13.0
|
35
|
+
Requires-Dist: pillow>=10.0.0
|
36
|
+
Requires-Dist: psutil>=5.9.0
|
37
|
+
Requires-Dist: pycryptodomex>=3.23.0
|
38
|
+
Requires-Dist: pydantic>=2.7.0
|
39
|
+
Requires-Dist: pyopenssl>=25.0.0
|
40
|
+
Requires-Dist: python-nmap>=0.7.1
|
41
|
+
Requires-Dist: pyyaml>=6.0
|
42
|
+
Requires-Dist: rapidfuzz>=3.0.0
|
43
|
+
Requires-Dist: requests>=2.32.0
|
44
|
+
Requires-Dist: rich>=13.7.0
|
45
|
+
Requires-Dist: scapy>=2.5.0
|
46
|
+
Requires-Dist: selectolax>=0.3.20
|
47
|
+
Requires-Dist: structlog>=24.1.0
|
48
|
+
Requires-Dist: tqdm>=4.67.0
|
49
|
+
Requires-Dist: typer[all]>=0.12.0
|
50
|
+
Requires-Dist: uvloop>=0.19.0; platform_system != 'Windows'
|
51
|
+
Provides-Extra: capture
|
52
|
+
Requires-Dist: pypcap>=1.2.3; (platform_system == 'Linux' or platform_system == 'Windows') and extra == 'capture'
|
53
|
+
Requires-Dist: python-libpcap>=0.5; (platform_system == 'Darwin') and extra == 'capture'
|
54
|
+
Requires-Dist: python-wifi>=0.6.1; (platform_system == 'Linux' or platform_system == 'Windows') and extra == 'capture'
|
55
|
+
Requires-Dist: pywifi>=1.1.12; (platform_system == 'Linux' or platform_system == 'Windows') and extra == 'capture'
|
44
56
|
Provides-Extra: dev
|
45
|
-
Requires-Dist: cyclonedx-bom; extra == 'dev'
|
57
|
+
Requires-Dist: cyclonedx-bom>=4.4.0; extra == 'dev'
|
46
58
|
Requires-Dist: deptry>=0.23.0; extra == 'dev'
|
47
|
-
Requires-Dist: hypothesis; extra == 'dev'
|
48
|
-
Requires-Dist: mypy; extra == 'dev'
|
49
|
-
Requires-Dist: pip-audit; extra == 'dev'
|
50
|
-
Requires-Dist: pytest; extra == 'dev'
|
51
|
-
Requires-Dist: pytest
|
52
|
-
Requires-Dist: ruff; extra == 'dev'
|
59
|
+
Requires-Dist: hypothesis>=6.98.0; extra == 'dev'
|
60
|
+
Requires-Dist: mypy>=1.10.0; extra == 'dev'
|
61
|
+
Requires-Dist: pip-audit>=2.7.0; extra == 'dev'
|
62
|
+
Requires-Dist: pytest-xdist>=3.5.0; extra == 'dev'
|
63
|
+
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
64
|
+
Requires-Dist: ruff>=0.5.0; extra == 'dev'
|
53
65
|
Provides-Extra: headless
|
54
66
|
Requires-Dist: playwright>=1.40.0; extra == 'headless'
|
55
67
|
Provides-Extra: http3
|
@@ -139,7 +151,7 @@ Description-Content-Type: text/markdown
|
|
139
151
|
pipx install moriarty-project
|
140
152
|
|
141
153
|
# OU para instalar uma versão específica
|
142
|
-
# pipx install moriarty-project==0.1.
|
154
|
+
# pipx install moriarty-project==0.1.11
|
143
155
|
|
144
156
|
# Verificar a instalação
|
145
157
|
moriarty --help
|
@@ -1,4 +1,4 @@
|
|
1
|
-
moriarty/__init__.py,sha256=
|
1
|
+
moriarty/__init__.py,sha256=cKsA77DAYQM6cnf4tg-Cxk9NZrh_aqRgiXo4zEzjyxk,85
|
2
2
|
moriarty/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
moriarty/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
moriarty/assets/modules/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -328,7 +328,7 @@ moriarty/assets/templates/vulnerabilities/xss-reflected.yaml,sha256=iG0WphhygN2p
|
|
328
328
|
moriarty/assets/templates/vulnerabilities/xxe-basic.yaml,sha256=7bG1KT5jBm8SAQp-pbjxknFuW5fIkF9yrufsq2OghRk,565
|
329
329
|
moriarty/assets/wordlists/subdomains-1000.txt,sha256=XKDCiJMJ2wnDRngglAiv7iuDnwlUIr_-LnjlNwWp4sc,8032
|
330
330
|
moriarty/cli/__init__.py,sha256=PQ8kA28EJ9h8mIK_VJtH1PtJ3xfVsF3d7IsmpZfl_Bc,54
|
331
|
-
moriarty/cli/app.py,sha256=
|
331
|
+
moriarty/cli/app.py,sha256=eszaYMs7PfFS0e7B31FZ-ratFHKzs4S7KCvAiAljh24,7992
|
332
332
|
moriarty/cli/async_utils.py,sha256=jleTd2nyAVsNqJae2kKlo514gKKcH3nBXvfoLubOq6A,393
|
333
333
|
moriarty/cli/dns.py,sha256=QhDwe9uoAmk243XbO9YBYk3YlPmiXYT_vLqUXum9i70,2735
|
334
334
|
moriarty/cli/domain_cmd.py,sha256=CgpTN0kMKlAvrH72wDPuAodXOhBb0hgR4HBfZYfSTEg,24193
|
@@ -340,6 +340,7 @@ moriarty/cli/rdap.py,sha256=OVtYSsx37te0TxvY7K8iBMerPBSByXocm8kLeoUEhOw,3079
|
|
340
340
|
moriarty/cli/state.py,sha256=5_HXXff9KWiYw8R763NgUAFuCAKHTZZe2zYD9JEvJxw,855
|
341
341
|
moriarty/cli/tls.py,sha256=j4ieW_Vt0QG7AuDHfjUEAOYkvk4GJguB9hY6dYJW3K0,3269
|
342
342
|
moriarty/cli/user.py,sha256=EWtRp4pzY7kOiWE16Yokc71pB4GP-ItguF1E2Lkri3Q,8169
|
343
|
+
moriarty/cli/wifippler.py,sha256=sFjtwiN0-wSbBZ2MXE2Kb8kMBmz-BG1bsBcgo4G36SY,4431
|
343
344
|
moriarty/core/cache_backend.py,sha256=tu_szkoRfZOmHh9g4ZTGc3gN-gZ-zTJGVKxlHhtvIHY,7032
|
344
345
|
moriarty/core/config_manager.py,sha256=iXrH4UgMU05U7vsqfyFmwzybQIYH5s9hyjJlS9T9CKM,11751
|
345
346
|
moriarty/correlator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -385,7 +386,7 @@ moriarty/modules/orchestrator.py,sha256=uhK4UP69uWUxCK4a_bGk_BI8I-coBM8mO8Ear3pc
|
|
385
386
|
moriarty/modules/passive_recon.py,sha256=5XUJgyWvITMUf4W76QyNfbRgF1AitQ5xK9MbwzVURxM,16568
|
386
387
|
moriarty/modules/phone_extractor.py,sha256=Bv4VVWPqf67CQfkMDJddggtEU5UUbra2FP5DLik2Gxw,5298
|
387
388
|
moriarty/modules/pipeline_orchestrator.py,sha256=qP2WcvorM_pAjacJ8VuZ-1TQ7lDVLvnyFD9T4PvWq9I,26337
|
388
|
-
moriarty/modules/port_scanner.py,sha256=
|
389
|
+
moriarty/modules/port_scanner.py,sha256=FNExysXgxHU-z77yYIRL2om7C23WkiF-AMliPjSmQhQ,33432
|
389
390
|
moriarty/modules/rdap.py,sha256=XlrTDalbSxszEwIQFHt-XWON_P9UsLLiR84DGSKAwrk,1859
|
390
391
|
moriarty/modules/rdap_extended.py,sha256=Gef7zyOY5nuS2qn8a9iaXA7Tx3TJHZJBWpqa-BZaq4U,6447
|
391
392
|
moriarty/modules/stealth_mode.py,sha256=9LJWXSgBjDsTZYslHz4zSnzDoC3JFdBcu3oOYN1IPhA,24459
|
@@ -399,6 +400,20 @@ moriarty/modules/vuln_scanner.py,sha256=-sRWOPzmrzUP9Mly471JCbP7iAxSwoho9DVn-6bF
|
|
399
400
|
moriarty/modules/waf_detector.py,sha256=5biF5OVBHbLAj_5x0ZXzCS-94bQeJNzIcYm7kMDAX0I,20744
|
400
401
|
moriarty/modules/wayback_discovery.py,sha256=sJN9at7Py-ZiUWuwnMU7fHOc_F3WwN1R3Y72qNSmxck,8573
|
401
402
|
moriarty/modules/web_crawler.py,sha256=hxWbnD2GO_IbIb2FChCxCesgGu4dNhlloVqr5u1MC1k,5890
|
403
|
+
moriarty/modules/wifippler/__init__.py,sha256=x3Qs7_qVtVjaf8V2hVJxbjEJNK66tOcic1NCS6ZQNQ4,1316
|
404
|
+
moriarty/modules/wifippler/core/__init__.py,sha256=D1HzfyFmxhNzpC5m7ZLsRlC0xYx4viMz7CiBU2aoZrA,1831
|
405
|
+
moriarty/modules/wifippler/core/scanner.py,sha256=bjCBwDAybUMintwfUORZEl24Wr0zRJHfVg-j8-OUoKg,34193
|
406
|
+
moriarty/modules/wifippler/core/utils.py,sha256=b2qUvyuQFS7yxhzegATC3A2Oq8hvr2LnZG8tsF6gMXw,26497
|
407
|
+
moriarty/modules/wifippler/core/attacks/__init__.py,sha256=Ch9qg0PUB1Q8aSiZuoJRJl5iVyy7muMgZ88e2bkG_Zs,370
|
408
|
+
moriarty/modules/wifippler/core/attacks/deauth.py,sha256=0OywMNETvyzQyjWK5gePWck2U8dCAsA1jlsDlSkoqn4,13122
|
409
|
+
moriarty/modules/wifippler/core/attacks/handshake.py,sha256=KH39iPx7M6Dldxc9P_iOopO6mRJocCK7S3frAtvtG5Y,16024
|
410
|
+
moriarty/modules/wifippler/core/attacks/pmkid.py,sha256=13wMPWQy2XPPErdq8UXBKwwEwKLwpafFB_Ry1YbmFR0,16987
|
411
|
+
moriarty/modules/wifippler/core/attacks/wep.py,sha256=ZD1KjrtrD7Yan4GwNYoIJ-kq8bk0eObjeFGDXnjvv7s,17294
|
412
|
+
moriarty/modules/wifippler/core/attacks/wpa.py,sha256=FKZ8g5_EB5J9tOckRF5p5qilynAb2OBmgc0AKjm6o30,17322
|
413
|
+
moriarty/modules/wifippler/core/attacks/wps.py,sha256=yYx6VITE3QYGBwM8J1RO6yu_r45ZLWNDWwdVMaU6xho,17504
|
414
|
+
moriarty/modules/wifippler/core/models/__init__.py,sha256=J6GPV457hbFy7Tdk2PNKzT8LnO9Cj3xqRDaQ8IoDptA,148
|
415
|
+
moriarty/modules/wifippler/core/models/network.py,sha256=xUi1Ac7LWWsrihq8RfDu9dHLZFN4oALlNvfJhHxWgok,6709
|
416
|
+
moriarty/modules/wifippler/core/utils/__init__.py,sha256=bfvSH1Ii2UI9v8ViwAj2gRn8pYE7gh2DYT-K129jELQ,20272
|
402
417
|
moriarty/net/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
403
418
|
moriarty/net/dns_cache.py,sha256=JwuDYKqmuSD-hl7PMyyQAen57ut-uvIszYrMKT-i8pY,6022
|
404
419
|
moriarty/net/dns_client.py,sha256=iem7FekC79ruwxWzG6eFkicYJi-urkRV0kNvj9uakM0,6591
|
@@ -412,7 +427,7 @@ moriarty/tests/test_email_service.py,sha256=mWqimjQRlljZNBuNePvSzhfq5FZ4mljrILGW
|
|
412
427
|
moriarty/tests/test_models.py,sha256=etklIISEUts3banaSRDSjhv-g6kd4wxucchCmlJkx6Y,1282
|
413
428
|
moriarty/tests/test_orchestrator.py,sha256=Do3M1qnbqPf_1pR3v89FXxhiwfYPZfXRvcfl05isQvs,856
|
414
429
|
moriarty/tests/test_tls_client.py,sha256=bQ46yXlIYNZwPTd8WGs6eUynHj56hVosxBycSU1gJe4,461
|
415
|
-
moriarty_project-0.1.
|
416
|
-
moriarty_project-0.1.
|
417
|
-
moriarty_project-0.1.
|
418
|
-
moriarty_project-0.1.
|
430
|
+
moriarty_project-0.1.12.dist-info/METADATA,sha256=D4kEGTm6C66dkjpXCoUuFb9rXk_vtWVr2MHqkxodFm8,11694
|
431
|
+
moriarty_project-0.1.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
432
|
+
moriarty_project-0.1.12.dist-info/entry_points.txt,sha256=L4TAUKy7HAy5hT46ZqS6eNOCmUTMi4x7ehZkIkTNnuE,51
|
433
|
+
moriarty_project-0.1.12.dist-info/RECORD,,
|
File without changes
|
File without changes
|