Skip to content

Commit

Permalink
Added a dprk_mode to make N. Korea the attack source
Browse files Browse the repository at this point in the history
  • Loading branch information
Darren Meyer authored and Darren Meyer committed Dec 15, 2014
1 parent bb9f209 commit fd2b471
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ <h3>About IPew</h3>
var org_name = $.getUrlVar('org_name');
var chatt_mode = $.getUrlVar('chatt_mode');
var china_mode = $.getUrlVar('china_mode');
var dprk_mode = $.getUrlVar('dprk_mode');
var random_mode = $.getUrlVar('random_mode');
var tng = $.getUrlVar('tng');
var wargames = $.getUrlVar('wargames');
Expand Down Expand Up @@ -379,6 +380,13 @@ <h3>About IPew</h3>
if (cnlatlong[src].country=="chn") { which_attack = "ZOMGOSH CHINA!!!!!!"; }
srccountry = cnlatlong[src]["country"];
}
// "Hi, Kim Jong!"
if (typeof dprk_mode !== 'undefined') {
srclat = 39.0194;
srclong = 125.7381;
which_attack = "ZOMG NORTH KOREAZ!!!";
srccountry = "kp";
}
// source is always Chattanooga if chatt_mode is set
// "Hi ThreatStream!!" http://www.csoonline.com/article/2689609/network-security/threat-intelligence-firm-mistakes-research-for-nation-state-attack.html
if (typeof chatt_mode !== 'undefined') {
Expand Down

0 comments on commit fd2b471

Please sign in to comment.