Quote:
Originally Posted by satya123
Host should have hacker free softwares..firewalls then your sites are protected...
|
That's not true. There are 8 debatable levels of the basic network that can all be insecure.
The top most is the user. They are not securable because they cannot be controlled. You can make suggestions or helpful tools (like many sites suggest you check the url bar before ever logging in).
The next is the application, the internet browser. This can be insecure because not all browsers are the same. Don't forget about malicious code like trojans, keyloggers and viruses.
Next is the presentation of data which is putting it together to be viewed in whatever form it is called in (primarily http). Attacking this is as easy as using clear text extraction or a protocol attack.
The 4th level of data is session data, or a connection between servers like SQL (structured query language made popular in dynamic languages like php which use mysql to store data). These are open to session hijackings and password/dictionary attack (sending data over and over again until the correct combination is found).
The 5th level is the transporting of data. These are open to port scanning and DOS attacks. This is not very maintainable on your end.
The last 3 levels are also far from your range unless you maintain your server, the network, data link, and physical connection. These are maintained by your host.
------------
If you don't make your own code, you don't have too much to worry about. The best way to protect your website is to stay updated on whatever scripts you use (phpbb ect.) and if you do go into coding, read some security books.