Graudit is a simple script and signature sets that allows you to find potential security flaws in source code using the GNU utility grep. It’s comparable to other static analysis applications like RATS, SWAAT and flaw-finder while keeping the technical requirements to a minimum and being very flexible.
Usage
Graudit supports several options and tries to follow good shell practices. For a list of the options you can run graudit -h or see below. The simplest way to use graudit is;
1 |
graudit /path/to/scan |
You can download Graudit v1.1 here:
Or read more here.
GZero says
I really like this. Simple and brutally effective.
Thanks Darknet!
Henk says
This kind of scanner will produce many false positives to be really useful. Another problem not tackled with graudit is the problem with proned custom-made functions.
Did anyone found a (non-trivial) bug with graudit?
Wireghoul says
Hello,
I am the author of the aforementioned software. Version 1.2 has just been released which seriously reduces the number of false positives. The default rule set now focuses on lower hanging fruit.
I have found SQLi, RFI and command execution in popular web apps with graudit.
Version 1.2+ will address custom functions (it’s on github, but not in release).