-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fee645
commit 704a3a0
Showing
9 changed files
with
80 additions
and
3 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
.deb/i-haklab/home/.local/etc/i-Haklab/Tools/Readme/E/enum4linux.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
# SMB | ||
|
||
- `-s` Listar recursos compartidos | ||
- `-u` Usuario | ||
- `-p` Contraseña | ||
|
||
``` | ||
enum4linux -S -u -p <ip> | ||
``` |
13 changes: 12 additions & 1 deletion
13
.deb/i-haklab/home/.local/etc/i-Haklab/Tools/Readme/N/nmap.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
.deb/i-haklab/home/.local/etc/i-Haklab/Tools/Readme/R/rpcclient.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
|
||
|
||
|
||
``` | ||
rpcclient | ||
``` |
24 changes: 24 additions & 0 deletions
24
.deb/i-haklab/home/.local/etc/i-Haklab/Tools/Readme/S/smbclient.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Heramientas relacionadas | ||
|
||
- smdmap | ||
- nmap | ||
|
||
|
||
# Enumeracion de recursos | ||
|
||
- `-L` Listar los recursos | ||
- `-N` Omitir contraseñas | ||
|
||
```bash | ||
smbclient -L <IP> -N | ||
``` | ||
|
||
# Protocolo NT1 | ||
|
||
- `-option` Espesificamos una option para smb | ||
|
||
```bash | ||
smbclient -L 192.168.10.123 -N --option='client min protocol=NT1' | ||
``` | ||
|
||
|
18 changes: 18 additions & 0 deletions
18
.deb/i-haklab/home/.local/etc/i-Haklab/Tools/Readme/S/smbmap.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Heramientas relacionadas | ||
|
||
- smbclient | ||
- nmap | ||
- metasploit | ||
- rpcclient | ||
- crackmapexec | ||
- enum4linux | ||
|
||
|
||
# Enumeracion de smb | ||
|
||
- `-H` Ip objetivo | ||
- `-u` Usuario (% usuario actual del sistema ) | ||
|
||
``` | ||
smbmap -H <ip> -u% | ||
``` |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters