Code Review Tools
General
https://owasp.org/www-community/Source_Code_Analysis_Tools****
JavaScript
NodeJS
Electron
Python
.NET
Java
Go
PHP
Last updated
https://owasp.org/www-community/Source_Code_Analysis_Tools****
Last updated
Task
Command
Execute Jar
java -jar [jar]
Unzip Jar
unzip -d [output directory] [jar]
Create Jar
jar -cmf META-INF/MANIFEST.MF [output jar] *
Base64 SHA256
sha256sum [file] | cut -d' ' -f1 | xxd -r -p | base64
Remove Signing
rm META-INF/.SF META-INF/.RSA META-INF/*.DSA
Delete from Jar
zip -d [jar] [file to remove]
Decompile class
procyon -o . [path to class]
Decompile Jar
procyon -jar [jar] -o [output directory]
Compile class
javac [path to .java file]