moriarty-project 0.1.26__py3-none-any.whl → 0.1.27__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 +2 -2
- moriarty/cli/domain_cmd.py +127 -634
- moriarty/modules/domain_scanner.py +21 -16
- moriarty/modules/port_scanner_nmap.py +369 -102
- {moriarty_project-0.1.26.dist-info → moriarty_project-0.1.27.dist-info}/METADATA +5 -5
- {moriarty_project-0.1.26.dist-info → moriarty_project-0.1.27.dist-info}/RECORD +9 -11
- moriarty/cli/wifippler.py +0 -124
- moriarty/modules/port_scanner.py +0 -1050
- {moriarty_project-0.1.26.dist-info → moriarty_project-0.1.27.dist-info}/WHEEL +0 -0
- {moriarty_project-0.1.26.dist-info → moriarty_project-0.1.27.dist-info}/entry_points.txt +0 -0
moriarty/__init__.py
CHANGED
moriarty/cli/app.py
CHANGED
@@ -156,14 +156,14 @@ def self_update():
|
|
156
156
|
try:
|
157
157
|
# Verifica se está instalado com pipx
|
158
158
|
if check_pipx_installed():
|
159
|
-
console.print("🔄 Atualizando via pipx...", style="bold
|
159
|
+
console.print("🔄 Atualizando via pipx...", style="bold red")
|
160
160
|
result = subprocess.run(
|
161
161
|
["pipx", "install", "--upgrade", "moriarty-project"],
|
162
162
|
capture_output=True,
|
163
163
|
text=True
|
164
164
|
)
|
165
165
|
else:
|
166
|
-
console.print("🔄 Atualizando via pip...", style="bold
|
166
|
+
console.print("🔄 Atualizando via pip...", style="bold red")
|
167
167
|
result = subprocess.run(
|
168
168
|
[sys.executable, "-m", "pip", "install", "--upgrade", "moriarty-project"],
|
169
169
|
capture_output=True,
|