-
-
Notifications
You must be signed in to change notification settings - Fork 36
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
704a3a0
commit f9f75b6
Showing
7 changed files
with
968 additions
and
19 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
.deb/i-haklab/home/.local/etc/i-Haklab/Tools/Readme/C/crackmapexec.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,9 @@ | ||
# smb | ||
|
||
- | ||
- | ||
- | ||
|
||
``` | ||
crackmapexec smb active .htb -u SVC_TGS - p GPPstillStandingStrong2k18 --shares | ||
``` |
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
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
12 changes: 10 additions & 2 deletions
12
.deb/i-haklab/home/.local/etc/i-Haklab/Tools/Readme/P/pdftotest.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 |
---|---|---|
@@ -1,7 +1,15 @@ | ||
|
||
# intalacion | ||
|
||
`apt install poppler` | ||
|
||
- Ver por paginas | ||
# Opciones | ||
|
||
- `-f <int>` : Primera página para convertir. | ||
- `-l <int>` : Última página para convertir. | ||
|
||
## Ver por paginas | ||
|
||
`pdftotext -f 3 -l 3 archivo.pdf texto_pagina3.txt` | ||
|
||
> Nota: La opción `-f 3` indica la primera página que quieres extraer (en este caso, la página 3), y la opción `-l 3` indica la última página que quieres extraer, que también es la página 3 en este caso. El texto extraído se guardará en un archivo de texto llamado "texto_pagina3.txt". | ||
|
8 changes: 8 additions & 0 deletions
8
.deb/i-haklab/home/.local/etc/i-Haklab/Tools/Readme/T/tidy.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,8 @@ | ||
# Formatig | ||
|
||
- `-i` permite realizar la corrección de indentación | ||
- `-m` permite modificar el documento original. | ||
|
||
``` | ||
tidy -im index.html | ||
``` |
Oops, something went wrong.