The 3 layers can be summarised as:
- Sanity Checks
- Formal Checks
- Security Checks
Sanity and Syntax Checks
In Stage 1 we perform basically a sanity check of the code. Are there any errors, missing semi-colon's or just plain stupid things being committed to our repository and code base. This is essentially a case of running php -l against all our files being checked in or changed to make sure we catch these before they are committed and let you fix them before they are picked up by the wider team.
Formal Checks
This stage involves a more global analysis of the source code files, checking for thing such as:
- Too many or too few arguments in a function/method call
- Undeclared global or local variables
- Use of return value of a function that actually returns nothing
- Functions that have a required argument after an optional one
- Unknown functions, methods, or base classes
- Constants declared twice
Security Checks
The final layer of analysis, the security checks can be more thorough and use tools to scan our code for OWASP vulnerabilities, or as Etsy do - scan the repository with Antivirus and assess for dirty URLs.
Etsy claim they use ClamAV to check for any files or bad code which might make it's way into the repo, such as MSWord or PDF files that are suspicious. ClamAV also scans URL's and checks these against Google's Safe Browsing List to pick up on suspected Phishing or malware sites.
It is also possible to check here to ensure things like passwords aren't committed to repositories or specific naughty functions or processes are used. This can then trigger alerts for code reviews or ping back to the developer advising to fix ASAP.