Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
routersploit
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
czos-dpend
routersploit
Commits
66bdaefa
Commit
66bdaefa
authored
Aug 16, 2016
by
fwkz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Optimizing performance of creds/http_basic_default
parent
9e2ed38c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
http_basic_default.py
routersploit/modules/creds/http_basic_default.py
+2
-3
No files found.
routersploit/modules/creds/http_basic_default.py
View file @
66bdaefa
...
...
@@ -70,7 +70,7 @@ class Exploit(exploits.Exploit):
with
ThreadPoolExecutor
(
self
.
threads
)
as
executor
:
for
record
in
defaults
:
username
,
password
=
record
.
split
(
':'
)
executor
.
submit
(
self
.
target_function
,
username
,
password
)
executor
.
submit
(
self
.
target_function
,
u
rl
,
u
sername
,
password
)
if
self
.
credentials
:
print_success
(
"Credentials found!"
)
...
...
@@ -81,9 +81,8 @@ class Exploit(exploits.Exploit):
defaults
.
close
()
def
target_function
(
self
,
user
,
password
):
def
target_function
(
self
,
u
rl
,
u
ser
,
password
):
name
=
threading
.
current_thread
()
.
name
url
=
"{}:{}{}"
.
format
(
self
.
target
,
self
.
port
,
self
.
path
)
user
=
user
.
encode
(
'utf-8'
)
.
strip
()
password
=
password
.
encode
(
'utf-8'
)
.
strip
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment