Skip to content

Commit a5e9d43

Browse files
authored
Merge pull request #13 from twelvesec/develop
Develop
2 parents cb7b96f + b93bb61 commit a5e9d43

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ___________ .__ _________
2121
| | \ /\ ___/| |_\ /\ ___/ / \ ___/\ \___
2222
|____| \/\_/ \___ >____/\_/ \___ >_______ /\___ >\___ >
2323
\/ \/ \/ \/ \/
24-
rootend v.2.0.2 - Enumeration & Automation Privilege Escalation tool.
24+
rootend v.2.0.3 - Enumeration & Automation Privilege Escalation tool.
2525
rootend is an open source tool licensed under GPLv3.
2626
Affected systems: *nix.
2727
Written by: @nickvourd of @twelvesec.
@@ -61,7 +61,7 @@ Specific categories usage examples:
6161

6262
## Version
6363

64-
### 2.0.2
64+
### 2.0.3
6565

6666
## Supports
6767

rootend.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
#variables area
4242
__author__ = "@nickvourd"
43-
__version__ = "2.0.2"
43+
__version__ = "2.0.3"
4444
__license__ = "GPLv3"
4545
__team__ = "@twelvesec"
4646
__systems__ = "*nix"
@@ -1390,7 +1390,7 @@ def show_redis_creds(filename, redis_array, bold, warning, endc):
13901390
def read_redis(filename1, bold, warning, endc):
13911391
keywords = [ 'requirepass' ]
13921392

1393-
fopen = open(filename1, mode='r+')
1393+
fopen = open(filename1, mode='r')
13941394
fread = fopen.readlines()
13951395

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

1502-
fopen = open(filename, mode='r+')
1502+
fopen = open(filename, mode='r')
15031503
fread = fopen.readlines()
15041504

15051505
for line in fread:

0 commit comments

Comments
 (0)