Twelve Years of Service
Posts: 199
Threads: 11
How are websites hacked? 05-13-2014, 01:59 PM
#1
I've wondered about the various methods that websites are hacked, I know there's SQL Injection there which is probably the most basic one, I've read a bit about XSS but it is still not clear to me how everything really fits together.
•
Thirteen Years of Service
Posts: 529
Threads: 60
RE: How are websites hacked? 05-13-2014, 02:10 PM
#2
SSI injection, CSRF vulnerabilities, LFI, RFI, RCE, authentication bypass, XML injection, arbitrary file handling, CRLF injection, LDAP injection, XPATH injection, directory traversal, path disclosure...
The list goes on.
•
Twelve Years of Service
Posts: 72
Threads: 2
RE: How are websites hacked? 05-13-2014, 02:19 PM
#4
There are two main ways to do it:
- Attack on web application, here you use things like:
- SQLi
- CSRF
- ...
- Attack the webserver - you exploit one of deamons running here, or guess password, etc...
•
Thirteen Years of Service
Posts: 1,759
Threads: 199
RE: How are websites hacked? 05-13-2014, 02:19 PM
#5
Well there are multiple ways.
Human Error
Admin Stupidity
Incorrectly configured software
SQLi (Union Based, Error Based and Time Based)
XSS [Cross Site Scripting] (Persistent, Reflective and DOM-based)
CSRF {aka XSRF} [Cross Site Request Forgery]
LFI [Local File Inclusion]
RFI [Remote File Inclusion]
RCE [Remote Code Execution]
Arbitrary Code Execution
XPATH Injection
Local File Disclosure
Full Path Disclosure
These are very well knows but then you also have new vulnerabilities coming such as the Heartbleed bug.
Now I havent even scratched the surface of the different techniques and vulnerabilities out there, but this should hopefully give you somewhere to start. There's a few others I was going to mention but forgot the names of them.
•