sconfuse
v0.0.2
Published
sconfuse malware
Downloads
3
Readme
sconfuse malware
Sconfuse malware by converting all of your html tags into entities. Ripped from the headlines of @jennschiffer's incredibly eye-opening DHTMLConf talk about the dangers of malware and also an MIT thread somewhere.
Install
npm install -g sconfuse
Usage
$ cat index.htm
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>lol malware</title>
</head>
<body>
<img src="http://stream1.gifsoup.com/view3/4746482/swordfish-hacker-o.gif" />
</body>
</html>
$ sconfuse index.htm
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>V.I.R.U.S</title>
</head>
<body>
<img src="http://stream1.gifsoup.com/view3/4746482/swordfish-hacker-o.gif" />
</body>
</html>