What is “GET http://httpheader.net 301” in my nodejs app?

牧云@^-^@ 提交于 2019-12-24 18:09:43

问题


I see something like this in my nodejs app... Am I under hack attack ?

GET http://httpheader.net 301 5.464 ms - 108
GET http://www.httpheader.net/ 200 6.820 ms - -

Thank you very much


回答1:


The link from support of httpheader.net says

This is usually an indication that either the IP you are on had a proxy server at one time, your IP is being probed to see if it contains a proxy server or someone just has their software miss configured. These can usually be ignored as they pose no direct threat.

Also the default API routing on your server side is not very well configured. It should be returning 404 if the page was not found on your server instead you are returning 200.

You can block all these requests if you want to.



来源:https://stackoverflow.com/questions/29761532/what-is-get-http-httpheader-net-301-in-my-nodejs-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!