diff --git a/app.js b/app.js index badee80..74fe0ec 100644 --- a/app.js +++ b/app.js @@ -5,7 +5,7 @@ const PORT = 8080; const server = http.createServer((req, res) => { if (req.method === "GET" && req.url === "/") { res.writeHead(200, { "Content-Type": "text/plain" }); - res.end("Monday 13 april testing 2029"); + res.end("Sanity for security testing - 21 April 02026"); } else { res.writeHead(404, { "Content-Type": "text/plain" }); res.end("Not Found");