Insider is the OSS CLI project from the Insider Application Security Security Team for the community. This project have a simplified version of the proprietary Static Application Security Testing engine developed internally by us, this version of Insider is exclusively focused on covering the OWASP Top 10, to make source code analysis to find vulnerabilities right in the source code, focused on a agile and easy to implement software inside your DevOps pipeline.
Installation
We have precompiled binaries for Linux, Windows and macOS operational systems that you can find here
But if you are (g)old school or just want to compile it yourself, you'll need at least Go version 1.13.3., and GNU Make >= 4.2.1;
After downloading / checking if your version is compatible, you just have to:
go get github.com/insidersec/insidercd $GOPATH/src/github.com/insidersec/insidermake linux64ormake win64ormake macosormake all
We support:
linux32linux64win32win64macos
Have fun!
Usage
OBS.: The target folder should contain all the source code that should be analyzed, we plan to release support for compiled binaries for iOS, and Android' APKs.
./insider --help
Usage of insider:
-force
Overwrite the results directory. Insider does not overwrite the results directory by default - Optional
-no-banner
Skips the banner printing (Useful for CI/Docker environments) - Optional
-no-html
Skips the report generation in the HTML format - Optional
-no-json
Skips the report generation in the JSON format - Optional
-target string
Specify where to look for files to run the specific ruleset
-target <folder>
-target <myprojectfolder>
-tech string
Specify which technology ruleset to load. (Valid values are: android, ios, csharp, javascript)
-tech javascript
-tech csharp
Example
#Check the correct release for your environment
wget https://github.com/insidersec/insider/releases/download/1.0.1/insider-linux-amd64
chmod +x insider-linux-amd64
./insider-linux-amd64 -tech android -target example-master/
cat results/report.json
Contribution
-
Your contributions and suggestions are heartily
♥ welcome. See here the contribution guidelines. Please, report bugs via issues page. See here the security policy. for report security issues. (✿ ◕‿◕) -
You can also see this same documentation in Portuguese or in Spanish.
License
- This work is licensed under LGPL-3.0.
