GitBook: [#3095] No subject

This commit is contained in:
CPol 2022-04-11 00:18:13 +00:00 committed by gitbook-bot
parent 5449a9d705
commit c7aae78821
No known key found for this signature in database
GPG key ID: 07D2180C7B12D0FF

View file

@ -2,7 +2,7 @@
## General
[**https://owasp.org/www-community/Source\_Code\_Analysis\_Tools**](https://owasp.org/www-community/Source_Code_Analysis_Tools#)
[**https://owasp.org/www-community/Source\_Code\_Analysis\_Tools**](https://owasp.org/www-community/Source\_Code\_Analysis\_Tools#)
```bash
https://www.sonarqube.org/downloads/
@ -20,20 +20,20 @@ https://libraries.io/pypi/detect-secrets
## JavaScript
```text
```
https://jshint.com/
https://github.com/jshint/jshint/
```
## NodeJS
```text
```
https://github.com/ajinabraham/nodejsscan
```
## Electron
```text
```
https://github.com/doyensec/electronegativity
```
@ -69,17 +69,17 @@ echo "Main-Class: test" > META-INF/MANIFEST.MF
jar cmvf META-INF/MANIFEST.MF test.jar test.class
```
| 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\] |
| 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] |
## Go
@ -87,7 +87,10 @@ jar cmvf META-INF/MANIFEST.MF test.jar test.class
https://github.com/securego/gosec
```
### PHP
## PHP
[Psalm](https://phpmagazine.net/2018/12/find-errors-in-your-php-applications-with-psalm.html) and [PHPStan](https://phpmagazine.net/2020/09/phpstan-pro-edition-launched.html).
## Solidity
* [https://www.npmjs.com/package/solium](https://www.npmjs.com/package/solium)