Skip to content

Commit

Permalink
add lemonparty payload
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz committed Jul 22, 2011
1 parent a171927 commit c95db8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ To execute an XSS attack on the test server, just click [HERE](http://localhost:
nyan - Redirects attacker to nyan.cat
goatse - Redirects attacker to goatse.bz (WARNING: Harmful to eyes)
bush - Redirects attacker to George W. Bush "you just fell for the trap"
lemonparty - Redirects attacker to lemonparty.org

## Adding detectives

Expand Down
4 changes: 4 additions & 0 deletions lib/payloads/lemonparty.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
exports.run = function (req, res) {
res.writeHead(302, {'Location': 'http://lemonparty.org/'});
res.end();
};

0 comments on commit c95db8d

Please sign in to comment.