Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #13

Merged
merged 4 commits into from
Nov 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ___________ .__ _________
| | \ /\ ___/| |_\ /\ ___/ / \ ___/\ \___
|____| \/\_/ \___ >____/\_/ \___ >_______ /\___ >\___ >
\/ \/ \/ \/ \/
rootend v.2.0.2 - Enumeration & Automation Privilege Escalation tool.
rootend v.2.0.3 - Enumeration & Automation Privilege Escalation tool.
rootend is an open source tool licensed under GPLv3.
Affected systems: *nix.
Written by: @nickvourd of @twelvesec.
Expand Down Expand Up @@ -61,7 +61,7 @@ Specific categories usage examples:

## Version

### 2.0.2
### 2.0.3

## Supports

Expand Down
6 changes: 3 additions & 3 deletions rootend.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

#variables area
__author__ = "@nickvourd"
__version__ = "2.0.2"
__version__ = "2.0.3"
__license__ = "GPLv3"
__team__ = "@twelvesec"
__systems__ = "*nix"
Expand Down Expand Up @@ -1390,7 +1390,7 @@ def show_redis_creds(filename, redis_array, bold, warning, endc):
def read_redis(filename1, bold, warning, endc):
keywords = [ 'requirepass' ]

fopen = open(filename1, mode='r+')
fopen = open(filename1, mode='r')
fread = fopen.readlines()

for liner in fread:
Expand Down Expand Up @@ -1499,7 +1499,7 @@ def read_db_creds(keyword1, keyword2, keyword3, keyword4, filename, bold, green,
#set an array
keyword = [ keyword1, keyword2, keyword3, keyword4 ]

fopen = open(filename, mode='r+')
fopen = open(filename, mode='r')
fread = fopen.readlines()

for line in fread:
Expand Down