diff options
author | heqnx <root@heqnx.com> | 2025-05-20 10:38:11 +0300 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-05-20 10:38:11 +0300 |
commit | 0495a548c9fb670b442fdde92eb9fbfddd570cc3 (patch) | |
tree | d61bc75994199c151f570d2f78272c220f95b07b /src/README.md | |
parent | db02b8c623bd778567007c11608f2adb6c3996e7 (diff) | |
download | cve-poc-mon-0495a548c9fb670b442fdde92eb9fbfddd570cc3.tar.gz cve-poc-mon-0495a548c9fb670b442fdde92eb9fbfddd570cc3.zip |
added cve-poc-mon
Diffstat (limited to 'src/README.md')
-rw-r--r-- | src/README.md | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/README.md b/src/README.md new file mode 100644 index 0000000..b94d050 --- /dev/null +++ b/src/README.md @@ -0,0 +1,34 @@ +# cve-poc-mon + +## Building + +Build with `go build`, `make` or `make <target>`. + +Available targets: + +- linux-amd64 +- linux-386 +- windows-amd64 +- windows-386 +- darwin-amd64 +- darwin-arm64 + +## Running + +``` +$ ./cve-poc-mon -h +This program searches GitHub for public repositories created today that match the keyword 'cve-<current_year>'. +It then clones these repositories to a specified directory, keeps track of them to avoid duplicates, and updates a README.md file with their URLs and descriptions. + +Usage: + -auto-update + Automatically update previously cloned repositories + -cloneDir string + Directory to clone repositories (default "cve-pocs") + -clonedList string + File to store cloned repository URLs (default "cve-pocs.txt") + -silent + Suppress update messages + -token string + GitHub API token +``` |