fix: net.recon module is now enabled by default

This commit is contained in:
evilsocket 2018-01-27 21:13:49 +01:00
parent b956d644a9
commit 9a0f85b8bd
16 changed files with 4 additions and 21 deletions

View file

@ -4,7 +4,7 @@ function onRequest(req, res) {
res.Status = 200;
res.ContentType = "text/html";
res.Headers = "Connection: close";
res.Body = readFile("caplets/web-override.html");
res.Body = readFile("caplets/www/index.html");
res.Updated();
}