Skip to content

Commit 2629030

Browse files
committed
docs(docs): nueva documentacion comando evidence \n\n Version: release/0.1.53 \n\n ahroa en ingles y mas detallado \n\n Modified file(s):\n- COMMANDS.md
- README.md - docs/COMMANDS.html - docs/README.html - docs/index.html - docs/index.html.bak - lazyown\n LazyOwn on HackTheBox: https://app.hackthebox.com/teams/overview/6429 \n\n LazyOwn/ https://grisuno.github.io/LazyOwn/ \n\n \n\n Fecha: Sat Oct 5 01:18:45 2024 -0300 \n\n Hora: 1728101925
1 parent d6a7727 commit 2629030

File tree

9 files changed

+2537
-2319
lines changed

9 files changed

+2537
-2319
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
# Changelog
33

44

5+
### Documentación
6+
7+
### Otros
8+
9+
* * docs(docs): nueva documentacion comando evidence \n\n Version: release/0.1.53 \n\n ahroa en ingles y mas detallado \n\n Modified file(s):\n- COMMANDS.md - README.md - docs/COMMANDS.html - docs/README.html - docs/index.html - docs/index.html.bak - lazyown\n LazyOwn on HackTheBox: https://app.hackthebox.com/teams/overview/6429 \n\n LazyOwn/ https://grisuno.github.io/LazyOwn/ \n\n \n\n Fecha: Sat Oct 5 01:18:45 2024 -0300 \n\n Hora: 1728101925
10+
11+
512
### Pruebas
613

714
### Otros

COMMANDS.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5607,13 +5607,33 @@ and prints relevant information to the screen.
56075607
:returns: None
56085608

56095609
## evidence
5610-
Comprime la carpeta 'sessions' y la codifica en un video usando lazyown_infinitestorage.py.
5611-
Si se proporciona un nombre de archivo, decodifica el video en su lugar.
5610+
Compresses the 'sessions' folder and encodes it into a video using the lazyown_infinitestorage.py script.
5611+
If a filename is provided as an argument, it decodes the specified video instead.
56125612

5613-
:param line: Opcional; si se proporciona, es el nombre del video para decodificar.
5613+
This function operates in two modes depending on the input:
5614+
1. **Encode Mode (default)**:
5615+
- Compresses the contents of the 'sessions' directory into a ZIP file named 'sessions.zip'.
5616+
- Utilizes the lazyown_infinitestorage.py script to convert the ZIP file into a high-definition video file named 'encoded_output.avi' with a frame size of 1920x1080 and a frame rate of 25 FPS.
5617+
5618+
2. **Decode Mode**:
5619+
- When the 'line' parameter contains the string "decode", it lists all available video files in the 'sessions' directory (files with .mp4, .mkv, or .avi extensions).
5620+
- If there are no video files present, it prints an error message and exits.
5621+
- Prompts the user to select a video by entering its corresponding number.
5622+
- Constructs a command to decode the selected video file using the lazyown_infinitestorage.py script, outputting the decoded result to a specified directory.
5623+
5624+
:param line: An optional parameter that, when provided, indicates that the user wants to decode a video. If not provided, the function operates in encode mode.
56145625
:type line: str
56155626
:returns: None
56165627

5628+
Example usage:
5629+
- To compress and encode: do_evidence()
5630+
- To decode a video: do_evidence('decode')
5631+
5632+
Notes:
5633+
- The 'sessions' directory must exist and contain files for encoding.
5634+
- The lazyown_infinitestorage.py script must be present in the specified directory.
5635+
- Ensure that the output paths for both encoding and decoding do not conflict with existing files.
5636+
56175637
## find_tgts
56185638
Finds and returns a list of target hosts with port 445 open in the specified subnet.
56195639

README.md

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6902,13 +6902,33 @@ and prints relevant information to the screen.
69026902
:returns: None
69036903
69046904
## evidence
6905-
Comprime la carpeta 'sessions' y la codifica en un video usando lazyown_infinitestorage.py.
6906-
Si se proporciona un nombre de archivo, decodifica el video en su lugar.
6905+
Compresses the 'sessions' folder and encodes it into a video using the lazyown_infinitestorage.py script.
6906+
If a filename is provided as an argument, it decodes the specified video instead.
69076907
6908-
:param line: Opcional; si se proporciona, es el nombre del video para decodificar.
6908+
This function operates in two modes depending on the input:
6909+
1. **Encode Mode (default)**:
6910+
- Compresses the contents of the 'sessions' directory into a ZIP file named 'sessions.zip'.
6911+
- Utilizes the lazyown_infinitestorage.py script to convert the ZIP file into a high-definition video file named 'encoded_output.avi' with a frame size of 1920x1080 and a frame rate of 25 FPS.
6912+
6913+
2. **Decode Mode**:
6914+
- When the 'line' parameter contains the string "decode", it lists all available video files in the 'sessions' directory (files with .mp4, .mkv, or .avi extensions).
6915+
- If there are no video files present, it prints an error message and exits.
6916+
- Prompts the user to select a video by entering its corresponding number.
6917+
- Constructs a command to decode the selected video file using the lazyown_infinitestorage.py script, outputting the decoded result to a specified directory.
6918+
6919+
:param line: An optional parameter that, when provided, indicates that the user wants to decode a video. If not provided, the function operates in encode mode.
69096920
:type line: str
69106921
:returns: None
69116922
6923+
Example usage:
6924+
- To compress and encode: do_evidence()
6925+
- To decode a video: do_evidence('decode')
6926+
6927+
Notes:
6928+
- The 'sessions' directory must exist and contain files for encoding.
6929+
- The lazyown_infinitestorage.py script must be present in the specified directory.
6930+
- Ensure that the output paths for both encoding and decoding do not conflict with existing files.
6931+
69126932
## find_tgts
69136933
Finds and returns a list of target hosts with port 445 open in the specified subnet.
69146934
@@ -7128,6 +7148,13 @@ Helper function to alternate the case of characters in a string.
71287148
# Changelog
71297149
71307150
7151+
### Pruebas
7152+
7153+
### Otros
7154+
7155+
* * test(test): lazyown infinite glitch storage \n\n Version: release/0.1.53 \n\n works like a charm :D \n\n Modified file(s):\n- COMMANDS.md - README.md - docs/COMMANDS.html - docs/README.html - docs/index.html - docs/index.html.bak - lazyown - payload.json - sessions/users.txt\n LazyOwn on HackTheBox: https://app.hackthebox.com/teams/overview/6429 \n\n LazyOwn/ https://grisuno.github.io/LazyOwn/ \n\n \n\n Fecha: Fri Oct 4 01:33:06 2024 -0300 \n\n Hora: 1728016386
7156+
7157+
71317158
### Correcciones
71327159
71337160
### Otros

0 commit comments

Comments
 (0)