Skip to content

Commit

Permalink
Fix org_name XSS path
Browse files Browse the repository at this point in the history
  • Loading branch information
Darren Meyer authored and Darren Meyer committed Dec 18, 2014
1 parent fd2b471 commit 3a1810e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ <h3>About IPew</h3>
attack_max=200;
}

if (typeof org_name !== 'undefined') { $("#titlediv").html(decodeURI(org_name) + " IPew Attack Map") }
if (typeof org_name !== 'undefined') { $("#titlediv").text(decodeURI(org_name) + " IPew Attack Map").html() }

// we maintain a fixed queue of "attacks" via this class
function FixedQueue( size, initialValues ){
Expand Down

0 comments on commit 3a1810e

Please sign in to comment.