Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Testing against hacking attempts

I want to make sure my site is protected against hacking attempts and I think the best way to test is to try and hack my site myself. What sort of things do hackers do to try and hack my site?

E.g.,

Test - they might put javascript in a input field e.g.,

<“open javascript tag">window.location = “www.somewhereelse.com”;<“end javascript tag”>

Protection - Use php htmlentities function before displaying data.

What other things can I test against to make sure my site is safe?

like image 905
woot586 Avatar asked Jun 06 '11 08:06

woot586


People also ask

What is hacking testing?

Penetration testing is a specific type of ethical hacking that involves hiring a certified professional to asses the strengths of a preexisting system. Usually, pen testers are given privileged information and use it to find exploitable flaws.

Which testing is used to test security issues?

Dynamic Analysis (Penetration Testing) Penetration testing, or a pen test, is a software testing technique that uses controlled cyber-attacks to target a running system to determine vulnerabilities that could be exploited by attackers.

What is tester in ethical hacking?

A tester essentially does need to have a comprehensive knowledge of everything rather required to have the knowledge of only the specific area for which he conducts pen testing. An ethical hacker essentially needs to have a comprehensive knowledge of software programming as well as hardware.


2 Answers

You will find an extensive list of attacks here: https://www.owasp.org/index.php/Category:Attack

like image 84
Lawrence Cherone Avatar answered Sep 28 '22 18:09

Lawrence Cherone


The best choice is to use a vulnerability scanner. I can recommend Acunetix, on Windows, nikto2 - cross platform and free, nessus - i would say the leader.

like image 34
croisharp Avatar answered Sep 28 '22 18:09

croisharp