Skip to content

Commit

Permalink
feat(feat): new tag \n\n Version: release/0.2.14 \n\n \n\n Modified f…
Browse files Browse the repository at this point in the history
…ile(s):\n- COMMANDS.md

- README.md
- docs/COMMANDS.html
- docs/README.html
- docs/UTILS.html
- docs/index.html
- docs/index.html.bak\n  LazyOwn on HackTheBox: https://app.hackthebox.com/teams/overview/6429 \n\n  LazyOwn/   https://grisuno.github.io/LazyOwn/ \n\n \n\n Fecha: Sun Nov 3 22:23:24 2024 -0300 \n\n Hora: 1730683404
  • Loading branch information
grisuno committed Nov 4, 2024
1 parent ddeebb9 commit 63e8710
Show file tree
Hide file tree
Showing 10 changed files with 3,526 additions and 3,219 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@
# Changelog


### Nuevas características

### Otros

* * feat(feat): new tag \n\n Version: release/0.2.14 \n\n \n\n Modified file(s):\n- COMMANDS.md - README.md - docs/COMMANDS.html - docs/README.html - docs/UTILS.html - docs/index.html - docs/index.html.bak\n LazyOwn on HackTheBox: https://app.hackthebox.com/teams/overview/6429 \n\n LazyOwn/ https://grisuno.github.io/LazyOwn/ \n\n \n\n Fecha: Sun Nov 3 22:23:24 2024 -0300 \n\n Hora: 1730683404


### Otros

### Otros

* * Merge pull request #57 from grisuno/feature/Hackback


### Otros

### Otros

* * too many commands documented at COMMANDS.md


### Pruebas

### Otros
Expand Down
55 changes: 55 additions & 0 deletions COMMANDS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3524,6 +3524,23 @@ To manually run this task, provide a number (rotation amount) and a string in th

Note: The function assumes that the rotation number is an integer between 1 and 27. If the number is out of range or not a valid integer, it will print an error message.

## rotf
Apply a ROT (rotation) substitution cipher to the given extension.

This function rotates each character in the input extension by the specified number of positions in the alphabet. It supports rotation values between 1 and 27.

Usage:
rot <number> '<extension>'

:param line: The input extension containing the number and the text to be rotated. The format should be '<number> '<extension>' where <number> is the rotation amount and <extension> is the text to be ciphered.
:type line: str
:returns: None

Manual execution:
To manually run this task, provide a number (rotation amount) and a extension in the format `rot <number> '<extension>'`. Ensure the number is between 1 and 27.

Note: The function assumes that the rotation number is an integer between 1 and 27. If the number is out of range or not a valid integer, it will print an error message.

## hydra
Uses Hydra to perform a brute force attack on a specified HTTP service with a user and password list.

Expand Down Expand Up @@ -6919,6 +6936,44 @@ Usage example:
automatically if available.
:return: None

## regeorg
Executes the reGeorg tool for HTTP(s) tunneling through a SOCKS proxy.

This function performs the following actions:
1. Checks if the reGeorg tool is installed; if not, it clones the repository and sets up the environment.
2. Validates the command line arguments, specifically the port and URL required for the SOCKS proxy.
3. Constructs the command to run the reGeorg SOCKS proxy with the specified options and executes it.
4. Provides usage instructions in case of incorrect command line argument formats.

Parameters:
line (str): Command argument specifying the parameters for the reGeorg execution.
- The expected format is: "<port> <url>", where <port> is the listening port and <url> is the URL
containing the tunnel script.

Returns:
None

## rocky
Reduces a wordlist based on the specified password length.

This function filters the provided wordlist to only include passwords
that match the specified length. If no length is provided, it defaults
to 4. The function constructs a grep command to achieve this and executes
it.

Usage:
do_rocky(line: str)

:param line: The length of the passwords to filter in the wordlist.
This parameter should be a string representing a positive integer.
If not provided, the function prompts the user for input.
:type line: str
:raises ValueError: If the provided length is not a valid positive integer.

Example:
do_rocky('8')
# Executes: grep '^.\{8\}$' /usr/share/wordlists/rockyou.txt > sessions/lazypass_mini_rocky.txt

## find_tgts
Finds and returns a list of target hosts with port 445 open in the specified subnet.

Expand Down
62 changes: 62 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5211,6 +5211,23 @@ To manually run this task, provide a number (rotation amount) and a string in th
Note: The function assumes that the rotation number is an integer between 1 and 27. If the number is out of range or not a valid integer, it will print an error message.
## rotf
Apply a ROT (rotation) substitution cipher to the given extension.
This function rotates each character in the input extension by the specified number of positions in the alphabet. It supports rotation values between 1 and 27.
Usage:
rot <number> '<extension>'
:param line: The input extension containing the number and the text to be rotated. The format should be '<number> '<extension>' where <number> is the rotation amount and <extension> is the text to be ciphered.
:type line: str
:returns: None
Manual execution:
To manually run this task, provide a number (rotation amount) and a extension in the format `rot <number> '<extension>'`. Ensure the number is between 1 and 27.
Note: The function assumes that the rotation number is an integer between 1 and 27. If the number is out of range or not a valid integer, it will print an error message.
## hydra
Uses Hydra to perform a brute force attack on a specified HTTP service with a user and password list.
Expand Down Expand Up @@ -8606,6 +8623,44 @@ Usage example:
automatically if available.
:return: None
## regeorg
Executes the reGeorg tool for HTTP(s) tunneling through a SOCKS proxy.
This function performs the following actions:
1. Checks if the reGeorg tool is installed; if not, it clones the repository and sets up the environment.
2. Validates the command line arguments, specifically the port and URL required for the SOCKS proxy.
3. Constructs the command to run the reGeorg SOCKS proxy with the specified options and executes it.
4. Provides usage instructions in case of incorrect command line argument formats.
Parameters:
line (str): Command argument specifying the parameters for the reGeorg execution.
- The expected format is: "<port> <url>", where <port> is the listening port and <url> is the URL
containing the tunnel script.
Returns:
None
## rocky
Reduces a wordlist based on the specified password length.
This function filters the provided wordlist to only include passwords
that match the specified length. If no length is provided, it defaults
to 4. The function constructs a grep command to achieve this and executes
it.
Usage:
do_rocky(line: str)
:param line: The length of the passwords to filter in the wordlist.
This parameter should be a string representing a positive integer.
If not provided, the function prompts the user for input.
:type line: str
:raises ValueError: If the provided length is not a valid positive integer.
Example:
do_rocky('8')
# Executes: grep '^.\{8\}$' /usr/share/wordlists/rockyou.txt > sessions/lazypass_mini_rocky.txt
## find_tgts
Finds and returns a list of target hosts with port 445 open in the specified subnet.
Expand Down Expand Up @@ -8828,6 +8883,13 @@ No description available.
# Changelog
### Pruebas
### Otros
* * test(fix): \n\n Version: release/0.2.13 \n\n \n\n Modified file(s):\n- README.md - docs/README.html - docs/index.html - docs/index.html.bak\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 Nov 1 17:37:22 2024 -0300 \n\n Hora: 1730493442
### Pruebas
### Otros
Expand Down
Loading

0 comments on commit 63e8710

Please sign in to comment.