saber: manuales cosechados e indice publico pre-construido
- manuales.py cosecha el --help de las herramientas que no traen man page (ffuf, sqlmap, suite impacket, netexec, hydra...) y lo escribe como markdown en conocimiento/09 - Manuales/. Es la referencia de opciones que la man page no da; complementa el cheatsheet de invocaciones comunes. - indexa.py --publico construye saber-publico.jsonl: glosario + pack de conocimiento con los vectores ya calculados, 100% publico y portable. - busca.py usa ese indice publico como fallback cuando no hay indice personal, asi un clon recien hecho consulta al instante sin reindexar nada. - .gitignore deja pasar saber-publico.jsonl; el personal (saber.jsonl) sigue fuera. - docs/rag.md y el README del pack documentan ambas cosas.
This commit is contained in:
parent
1dfb3513e6
commit
9fa0a40edf
12 changed files with 1206 additions and 45 deletions
66
nucleo/saber/conocimiento/09 - Manuales/netexec.md
Normal file
66
nucleo/saber/conocimiento/09 - Manuales/netexec.md
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
# netexec — manual
|
||||
|
||||
Salida de `netexec --help`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos).
|
||||
|
||||
```
|
||||
usage: netexec [-h] [--version] [-t THREADS] [--timeout TIMEOUT]
|
||||
[--jitter INTERVAL] [--no-progress] [--log LOG]
|
||||
[--verbose | --debug] [-6] [--dns-server DNS_SERVER]
|
||||
[--dns-tcp] [--dns-timeout DNS_TIMEOUT]
|
||||
{smb,ftp,ldap,mssql,winrm,nfs,ssh,wmi,vnc,rdp} ...
|
||||
|
||||
. .
|
||||
.| |. _ _ _ _____
|
||||
|| || | \ | | ___ | |_ | ____| __ __ ___ ___
|
||||
\\( )// | \| | / _ \ | __| | _| \ \/ / / _ \ / __|
|
||||
.=[ ]=. | |\ | | __/ | |_ | |___ > < | __/ | (__
|
||||
/ /˙-˙\ \ |_| \_| \___| \__| |_____| /_/\_\ \___| \___|
|
||||
˙ \ / ˙
|
||||
˙ ˙
|
||||
|
||||
The network execution tool
|
||||
Maintained as an open source project by @NeffIsBack, @MJHallenbeck, @_zblurx
|
||||
|
||||
For documentation and usage examples, visit: https://www.netexec.wiki/
|
||||
|
||||
Version : 1.5.1
|
||||
Codename: Yippie-Ki-Yay
|
||||
Commit : 515dccee
|
||||
|
||||
options:
|
||||
-h, --help show this help message and exit
|
||||
--verbose enable verbose output
|
||||
--debug enable debug level information
|
||||
|
||||
Generic Options:
|
||||
--version Display nxc version
|
||||
-t THREADS, --threads THREADS
|
||||
set how many concurrent threads to use
|
||||
--timeout TIMEOUT max timeout in seconds of each thread
|
||||
--jitter INTERVAL sets a random delay between each authentication
|
||||
|
||||
Output Options:
|
||||
--no-progress do not displaying progress bar during scan
|
||||
--log LOG export result into a custom file
|
||||
|
||||
DNS:
|
||||
-6 Enable force IPv6
|
||||
--dns-server DNS_SERVER
|
||||
Specify DNS server (default: Use hosts file & System DNS)
|
||||
--dns-tcp Use TCP instead of UDP for DNS queries
|
||||
--dns-timeout DNS_TIMEOUT
|
||||
DNS query timeout in seconds
|
||||
|
||||
Available Protocols:
|
||||
{smb,ftp,ldap,mssql,winrm,nfs,ssh,wmi,vnc,rdp}
|
||||
smb own stuff using SMB
|
||||
ftp own stuff using FTP
|
||||
ldap own stuff using LDAP
|
||||
mssql own stuff using MSSQL
|
||||
winrm own stuff using WINRM
|
||||
nfs own stuff using NFS
|
||||
ssh own stuff using SSH
|
||||
wmi own stuff using WMI
|
||||
vnc own stuff using VNC
|
||||
rdp own stuff using RDP
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue