Skip to content

Commit

Permalink
Merge pull request #13 from twelvesec/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
maldevel authored Nov 19, 2021
2 parents cb7b96f + b93bb61 commit a5e9d43
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit a5e9d43

Please sign in to comment.