Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add datasource(trickest) in go-exploitdb #202

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/install-manually.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ Then fetch exploit-db information. [README](https://github.com/vulsio/go-exploit

```bash
$ go-exploitdb fetch exploitdb
$ go-exploitdb fetch trickest
```

Fetch with --deep option, Many exploits information will be obtained. But fetch time is too long...
Expand Down
1 change: 1 addition & 0 deletions docs/main-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Vuls uses Multiple vulnerability databases
- PoC, Exploit
- [Exploit Database](https://www.exploit-db.com/)
- [Metasploit-Framework modules](https://www.rapid7.com/db/?q=&type=metasploit)
- [trickest/cve](https://github.com/trickest/cve)

- CERT
- [US-CERT](https://www.us-cert.gov/ncas/alerts)
Expand Down
4 changes: 4 additions & 0 deletions docs/tutorial-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ $ docker run --rm -i \
-v $PWD:/go-exploitdb \
-v $PWD/go-exploitdb-log:/var/log/go-exploitdb \
vuls/go-exploitdb fetch exploitdb
$ docker run --rm -i \
-v $PWD:/go-exploitdb \
-v $PWD/go-exploitdb-log:/var/log/go-exploitdb \
vuls/go-exploitdb fetch trickest
```

## Step3.6. Fetch go-msfdb
Expand Down
8 changes: 8 additions & 0 deletions docs/tutorial-vulsctl-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,14 @@ INFO[09-12|15:09:37] Inserting 44270 Exploits
44270 / 44270 [------------------------------------------------------------------------------------------------------------------------------------------------------------] 100.00% 4717 p/s
INFO[09-12|15:09:46] No CveID Exploit Count count=32084
INFO[09-12|15:09:46] CveID Exploit Count count=12186
INFO[03-25|04:50:03] Fetching Trickest Exploit
INFO[03-25|04:50:24] Trickest Exploit count=99503
INFO[03-25|04:50:24] Insert Exploit into go-exploitdb. db=sqlite3
INFO[03-25|04:50:24] Inserting 99503 Exploits
INFO[03-25|04:50:24] Inserting new Exploits
99503 / 99503 [---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------] 100.00% 25593 p/s
INFO[03-25|04:50:29] No CveID Exploit Count count=0
INFO[03-25|04:50:29] CveID Exploit Count count=99503
```

Scan again and view the report to see the PoC information in the Exploit Database.
Expand Down