What is the best way to secure an intranet website developed using PHP from outside attacks?
|
|
That's a stunningly thought-provoking question, and I'm surprised that you haven't received better answers. SummaryEverything you would do for an external-facing application, and then some. Thought ProcessIf I'm understanding you correctly, then you are asking a question which very few developers are asking themselves. Most companies have poor defence in depth, and once an attacker is in, he's in. Clearly you want to take it up a level. So, what kind of attack are we thinking about? Once I've done this (and got control of an internal PC), I'll try all the same attacks I would try against any internet application. However, that's not the end of the story. I've got more options: if I've got one of your user's PCs, then I might well be able to use a keylogger to gather usernames and passwords, as well as watching all your email for names and phone numbers. Recommendations
The common answers to securing a web app:
|
||
|
|
|
|
I would echo @Oli and favour the VPN method if possible. However, if for any reason you need more arbitrary access than this, you should use SSL to secure any authentication. And in addition to password authentication / IP address authentication it would be well worth looking at using SSL with client side certificates. |
||
|
|
|
|
The best way to secure it? Don't connect it to a network. Make your users physically enter a guarded room with a single console, running Mosaic. Oh, you want it to be easy to use?
If you forget these simple rules, you could find your application starring on the front pages of newspapers everywhere, just like Yahoo mail. |
||
|
|
|
|
The best way? Disable direct external access! If employees need to use it (like an extranet-style site), you should make them VPN in. Through VPN you have a lot more authentication options and most of them are a great deal more secure than leaving your intranet server accessible from the internet. Another option, and this only works if the data is public-safe, is scheduling your intranet server to push the data to another server that is externally accessible. I say push because you really don't want this server to have access to your network. Let your network server do the work. |
||
|
|
|
|
You could only allow access from internal IPs from the php app itself. Also dont ignore the usual security and best practices. Input validation and output encoding(whitelisting only), user accounts with hashed passwords etc. |
||
|
|
|
|
If it is on an internal network, why is it even possible to get to the app from the outside? Firewall rules should be in place at the very least. |
||
|
|
