Skip to content

Commit

Permalink
Add command to scan for security issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Jul 27, 2024
1 parent 0942a9f commit 1f60f32
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ run: install
run-production: build
sappy public --port=1313

.PHONY: scan
scan:
- brew install nmap
nmap --script ssl-enum-ciphers -p 80,443,8880,8443,8080,2096,2095,2087,2086,2083,2082,2053,2052 citizenlabs.org
curl -s -D- https://citizenlabs.org | grep -i 'x-frame-options\|content-security-policy'

.PHONY: clean
clean:
rm -rf public themes

0 comments on commit 1f60f32

Please sign in to comment.