Code Review
See: https://pentesterlab.com/exercises/codereview/course
String matching/Grep for bugs
This is probably the fastest way to find low-hanging fruits; you just try to find patterns of known vulnerabilities. For example, you can use grep
to find calls to the PHP system
function:
You can find a list of regular expressions to try on your code base in the GRaudit project (https://github.com/wireghoul/graudit).
Determine size of the application to narrow down methodologies
You can use the tool cloc
(https://github.com/AlDanial/cloc) to get a better idea of the size of the application:
Last updated