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
7316cdd8
Commit
7316cdd8
authored
Oct 31, 2016
by
Marcin Bury
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Beautify exception handling
parent
185870f1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ftp_bruteforce.py
routersploit/modules/creds/ftp_bruteforce.py
+2
-2
ftp_default.py
routersploit/modules/creds/ftp_default.py
+1
-1
No files found.
routersploit/modules/creds/ftp_bruteforce.py
View file @
7316cdd8
...
@@ -56,7 +56,7 @@ class Exploit(exploits.Exploit):
...
@@ -56,7 +56,7 @@ class Exploit(exploits.Exploit):
ftp
=
ftplib
.
FTP
()
ftp
=
ftplib
.
FTP
()
try
:
try
:
ftp
.
connect
(
self
.
target
,
port
=
int
(
self
.
port
),
timeout
=
10
)
ftp
.
connect
(
self
.
target
,
port
=
int
(
self
.
port
),
timeout
=
10
)
except
socket
.
error
,
socket
.
timeout
:
except
(
socket
.
error
,
socket
.
timeout
)
:
print_error
(
"Connection error:
%
s:
%
s"
%
(
self
.
target
,
str
(
self
.
port
)))
print_error
(
"Connection error:
%
s:
%
s"
%
(
self
.
target
,
str
(
self
.
port
)))
ftp
.
close
()
ftp
.
close
()
return
return
...
@@ -105,7 +105,7 @@ class Exploit(exploits.Exploit):
...
@@ -105,7 +105,7 @@ class Exploit(exploits.Exploit):
try
:
try
:
ftp
.
connect
(
self
.
target
,
port
=
int
(
self
.
port
),
timeout
=
10
)
ftp
.
connect
(
self
.
target
,
port
=
int
(
self
.
port
),
timeout
=
10
)
break
break
except
socket
.
error
,
socket
.
timeout
:
except
(
socket
.
error
,
socket
.
timeout
)
:
print_error
(
"{} Connection problem. Retrying..."
.
format
(
name
),
verbose
=
module_verbosity
)
print_error
(
"{} Connection problem. Retrying..."
.
format
(
name
),
verbose
=
module_verbosity
)
retries
+=
1
retries
+=
1
...
...
routersploit/modules/creds/ftp_default.py
View file @
7316cdd8
...
@@ -54,7 +54,7 @@ class Exploit(exploits.Exploit):
...
@@ -54,7 +54,7 @@ class Exploit(exploits.Exploit):
ftp
=
ftplib
.
FTP
()
ftp
=
ftplib
.
FTP
()
try
:
try
:
ftp
.
connect
(
self
.
target
,
port
=
int
(
self
.
port
),
timeout
=
10
)
ftp
.
connect
(
self
.
target
,
port
=
int
(
self
.
port
),
timeout
=
10
)
except
socket
.
error
,
socket
.
timeout
:
except
(
socket
.
error
,
socket
.
timeout
)
:
print_error
(
"Connection error:
%
s:
%
s"
%
(
self
.
target
,
str
(
self
.
port
)))
print_error
(
"Connection error:
%
s:
%
s"
%
(
self
.
target
,
str
(
self
.
port
)))
ftp
.
close
()
ftp
.
close
()
return
return
...
...
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