This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://tools.web-max.ca/encode_decode.php | |
| https://code.google.com/p/hash-identifier/ | |
| https://encipher.it/ | |
| http://yehg.net/encoding/# | |
| http://shazzer.co.uk/vectors?search=XSS | |
| http://www.edge-security.com/wfuzz.php | |
| https://paulschou.com/tools/xlate/ | |
| Hash Crackers: | |
| http://www.onlinehashcrack.com/hash-identification.php#res |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root@kali:~# docker run --rm -v $(pwd):/root/.cache/ aquasec/trivy alpine:3.9.2 | |
| Unable to find image 'aquasec/trivy:latest' locally | |
| latest: Pulling from aquasec/trivy | |
| cbdbe7a5bc2a: Pull complete | |
| ffd12ad1c19d: Pull complete | |
| 4045b0e44362: Pull complete | |
| a14ab5203caa: Pull complete | |
| Digest: sha256:23859fa9dcaaaa08deab48f0db2d643339e6e5a1060536f9a17bc6eb0517d332 | |
| Status: Downloaded newer image for aquasec/trivy:latest | |
| 2020-05-19T10:04:47.355Z INFO Detecting Alpine vulnerabilities... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ec2-user]$ anchore-cli | |
| Usage: anchore-cli [OPTIONS] COMMAND [ARGS]... | |
| Options: | |
| --debug Debug output to stderr | |
| --u TEXT Username (or use environment variable ANCHORE_CLI_USER) | |
| --p TEXT Password (or use environment variable ANCHORE_CLI_PASS) | |
| --url TEXT Service URL (or use environment variable | |
| ANCHORE_CLI_URL) | |
| --hub-url TEXT Anchore Hub URL (or use environment variable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ec2-user]$ docker-compose up -d | |
| Creating network "ec2-user_default" with the default driver | |
| Creating volume "ec2-user_anchore-db-volume" with default driver | |
| Pulling db (postgres:9)... | |
| 9: Pulling from library/postgres | |
| 7d2977b12acb: Pull complete | |
| 0189767a99c6: Pull complete | |
| 2ac96eba8c9d: Pull complete | |
| 8b4f0db1ff6e: Pull complete | |
| 9e30cfe22768: Pull complete |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ec2-user]$ docker-compose exec api anchore-cli system status | |
| Service analyzer (anchore-quickstart, http://analyzer:8228): up | |
| Service simplequeue (anchore-quickstart, http://queue:8228): up | |
| Service policy_engine (anchore-quickstart, http://policy-engine:8228): up | |
| Service apiext (anchore-quickstart, http://api:8228): up | |
| Service catalog (anchore-quickstart, http://catalog:8228): up | |
| Engine DB Version: 0.0.13 | |
| Engine Code Version: 0.7.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ec2-user~]$ docker-compose exec api anchore-cli image add docker.io/library/alpine:3.9.2 | |
| Image Digest: sha256:d05ecd4520cab5d9e5d877595fb0532aadcd6c90f4bbc837bc11679f704c4c82 | |
| Parent Digest: sha256:644fcb1a676b5165371437feaa922943aaf7afcfa8bfee4472f6860aad1ef2a0 | |
| Analysis Status: not_analyzed | |
| Image Type: docker | |
| Analyzed At: None | |
| Image ID: 5cb3aa00f89934411ffba5c063a9bc98ace875d8f92e77d0029543d9f2ef4ad0 | |
| Dockerfile Mode: None | |
| Distro: None | |
| Distro Version: None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ec2-user~]$ docker-compose exec api anchore-cli image wait docker.io/library/alpine:3.9.2 | |
| Image Digest: sha256:d05ecd4520cab5d9e5d877595fb0532aadcd6c90f4bbc837bc11679f704c4c82 | |
| Parent Digest: sha256:644fcb1a676b5165371437feaa922943aaf7afcfa8bfee4472f6860aad1ef2a0 | |
| Analysis Status: analyzed | |
| Image Type: docker | |
| Analyzed At: 2020-06-23T04:51:09Z | |
| Image ID: 5cb3aa00f89934411ffba5c063a9bc98ace875d8f92e77d0029543d9f2ef4ad0 | |
| Dockerfile Mode: Guessed | |
| Distro: alpine | |
| Distro Version: 3.9.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ec2-user~]$ curl http://localhost:8228/v1 | |
| "v1" | |
| [ec2-user~]$ anchore-cli --url http://localhost:8228/v1 --u admin --p foobar system status | |
| Service catalog (anchore-quickstart, http://catalog:8228): up | |
| Service policy_engine (anchore-quickstart, http://policy-engine:8228): up | |
| Service analyzer (anchore-quickstart, http://analyzer:8228): up | |
| Service simplequeue (anchore-quickstart, http://queue:8228): up | |
| Service apiext (anchore-quickstart, http://api:8228): up |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ec2-user]$ export ANCHORE_CLI_URL=http://localhost:8228/v1 | |
| [ec2-user]$ export ANCHORE_CLI_USER=admin | |
| [ec2-user]$ export ANCHORE_CLI_PASS=foobar | |
| [ec2-user]$ anchore-cli image add openjdk:8-jre-alpine | |
| Image Digest: sha256:b2ad93b079b1495488cc01375de799c402d45086015a120c105ea00e1be0fd52 | |
| Parent Digest: sha256:f362b165b870ef129cbe730f29065ff37399c0aa8bcab3e44b51c302938c9193 | |
| Analysis Status: not_analyzed | |
| Image Type: docker | |
| Analyzed At: None | |
| Image ID: f7a292bbb70c4ce57f7704cc03eb09e299de9da19013b084f138154421918cb4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ec2-user]$ anchore-cli image wait openjdk:8-jre-alpine | |
| Image Digest: sha256:b2ad93b079b1495488cc01375de799c402d45086015a120c105ea00e1be0fd52 | |
| Parent Digest: sha256:f362b165b870ef129cbe730f29065ff37399c0aa8bcab3e44b51c302938c9193 | |
| Analysis Status: analyzed | |
| Image Type: docker | |
| Analyzed At: 2020-06-24T03:00:23Z | |
| Image ID: f7a292bbb70c4ce57f7704cc03eb09e299de9da19013b084f138154421918cb4 | |
| Dockerfile Mode: Guessed | |
| Distro: alpine | |
| Distro Version: 3.9.4 |
OlderNewer