Facebook killed the radio star. And by radio star, I mean the premise of distributed forums around the internet. And that got got by Instagram/SnapChat. And that got got by TikTok. Where the fuck is the internet we once knew?
0 Members and 2 Guests are viewing this topic.
I have a programming folder, and I have nothing of value there
Our species really annoys me.
Isn't there a tool you can use to finger a web server to determine what kind of server OS is running? Or does it not need to be behind a firewall? (i.e., it needs more than just the webserver)?Thanks!
Thanks. A co-worker submitted a configuration change request the other day to remove the "X-Powered-By: ASP.NET" header from our web server. He cited "increased security" as a reason. I was fairly certain that it was a load of balls and thought we should let our security department handle security concerns.
Quote from: MyndFyre on August 31, 2011, 02:40:46 amThanks. A co-worker submitted a configuration change request the other day to remove the "X-Powered-By: ASP.NET" header from our web server. He cited "increased security" as a reason. I was fairly certain that it was a load of balls and thought we should let our security department handle security concerns. While I understand why you would see this as 'a load of balls', it can help against bad mass-attacks (someone polling a shit ton of servers looking for a specific combination of whatever). It won't do anything against someone attacking you directly, or doing a deep poll (using one of the above tools, etc). While the security risks are marginal, the effort to disable the headers is really small; I would do it. It's also like, 100bytes of bandwidth saved on every request.
Yet iago's request clearly showed "Server: Microsoft/IIS 7.0" or something like that.
ASP.net is pretty damn obvious if you look at the source, though, unless you use all your own constructs and not their built-in fields, ajax, viewstate, etc etc.
Quote from: iago on August 31, 2011, 10:02:25 amASP.net is pretty damn obvious if you look at the source, though, unless you use all your own constructs and not their built-in fields, ajax, viewstate, etc etc.That's not so true anymore with ASP.net MVC. It's gotten rid of all of that other junk like viewstate that gives it away.