Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java Security Testing

Is there such a thing as automated security testing in Java? If so, how is it implemented? Is it just JUnit tests written to try and exploit known server vulnerabilities, or are their security-centric testing frameworks?

As a segue I'm also interested in this OWASP Security Testing Framework, but can't tell if they're using "framework" in a classic sense (meaning a set of guidelines and procedures to follow), or in a software context (where they are actually providing automated security testing components).

Thanks to any that can shed some light on this for me!

like image 210
IAmYourFaja Avatar asked Sep 21 '11 15:09

IAmYourFaja


People also ask

What is security testing in Java?

What is security testing? Security testing is an integral part of software testing, which is used to discover the weaknesses, risks, or threats in the software application and also help us to stop the nasty attack from the outsiders and make sure the security of our software applications.

Is Java still a security risk?

While Java does continue to present certain security risks, having an effective information security strategy is a surefire way to protect systems and keep important data safe from the prying eyes of malicious actors.


1 Answers

Don't know is it exactly what you are looking for, but there is a blog post by Stephen Colebourne (author of joda-time and future new standard java8 date-time API) about testing security permissions with junit: Stephen Colebourne's blog: Testing a security permission

like image 170
Ivan Sopov Avatar answered Sep 22 '22 10:09

Ivan Sopov