vvvrelease/0.2.9 #50
grisuno
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Full Changelog: vvvrelease/0.2.8...vvvrelease/0.2.9
refill_password
Generate a list of possible passwords by filling each asterisk in the input with user-specified characters.
:param line: A string containing asterisks (e.g., WebAO***7) for generating variations.
:returns: None
Process:
Prompts the user to enter characters to replace each asterisk, creates all possible combinations,
and saves them to 'sessions/passwords_refilled.txt'. If this file exists, the previous version is
renamed with a timestamp suffix.
sudo
Checks if the script is running with superuser (sudo) privileges, and if not,
restarts the script with sudo privileges.
This function verifies if the script is being executed with root privileges
by checking the effective user ID. If the script is not running as root,
it prints a warning message and restarts the script using sudo.
:return: None
netview
Executes the Impacket netview tool to list network shares on a specified target.
This function performs the following actions:
credentials*.txt
and allows the user to select which file to use for executing the command.
and executes the command with the hash.
Parameters:
line (str): A command argument to determine the authentication mode.
If "pass", the function searches for credential files and authenticates using the selected file.
If "hash", it uses a hash file for authentication.
If neither, it prints an error message with usage instructions.
Returns:
None
wmiexec
Executes the Impacket WMIExec tool to run commands on a target system using WMI.
This function performs the following actions:
credentials*.txt
and allows the user to select which file to use for executing the command.
and executes the command with the hash.
Parameters:
line (str): A command argument to determine the authentication mode.
If "pass", the function searches for credential files and authenticates using the selected file.
If "hash", it uses a hash file for authentication.
If neither, it prints an error message with usage instructions.
Returns:
None
extract_ports
Extracts open ports and IP address information from a specified file.
This function performs the following actions:
Parameters:
line (str): The port to get information.
Returns:
None
This discussion was created from the release vvvrelease/0.2.9.
Beta Was this translation helpful? Give feedback.
All reactions