Blog

  • Sonarqube Analysis for Java Maven Project

    SonarQube (formerly Sonar) is an open-source platform developed by SonarSource for continuous inspection of code quality to perform automatic reviews with static analysis of code to detect bugs. We will use the sonarqube docker image to run the sonarqube locally. Afterwards we will run the analysis on local maven java project. docker pull sonarqube:lts-community You…

  • OWASP Top 10

    The OWASP Top 10 is a standard awareness document for developers and web application security. It represents a broad consensus about the most critical security risks to web applications. Access control enforces policy such that users cannot act outside of their intended permissions. Failures typically lead to unauthorized information disclosure, modification, or destruction of all…

  • |

    OWASP Vulnerability Checks With Maven

    The Open Web Application Security Project (OWASP) is a nonprofit foundation that works to improve the security of software. OWASP issues and maintains several recommendations regarding how to write secure code. One of the projects OWASP runs is the OWASP Dependency-Check. Lets integrate OWASP Dependency-Check in your Java/Maven project. Here’s the configuration I’m using in…