Skip to content

Files

Latest commit

 

History

History
29 lines (18 loc) · 676 Bytes

README.adoc

File metadata and controls

29 lines (18 loc) · 676 Bytes

Code crawler based on OWASP code review guide

This program can be used to search source code for interesting functionality per file type.

Dependencies

  • ripgrep for grepping, but grep can be used as well.

  • coreutils

Usage

Run code crawler in the root directory of the project you want to check.

/path/to/code_crawler.sh <language>

Example:

~/git/code-crawler/code_crawler.sh dotnet

Customization

By setting the GREPCMD environment variable another grep program can be used.

GREPCMD="grep -r" code-crawler ...