From 8fd60da94361b082c413162af82b618c200a1635 Mon Sep 17 00:00:00 2001 From: anujsahu Date: Fri, 17 Apr 2026 12:09:17 +0530 Subject: [PATCH] post security --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 6c0e13e..cc5e611 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('7thhh updateee Hello World'); + res.end('post security fixes updateee Hello World'); } else { res.writeHead(404, { 'Content-Type': 'text/plain' }); res.end('Not Found');