https://github.com/fhightower/k8s-scanner-collector
Script (deployable to k8s) to log requests from vulnerability and exploit scanners.
https://github.com/fhightower/k8s-scanner-collector
Last synced: 10 months ago
JSON representation
Script (deployable to k8s) to log requests from vulnerability and exploit scanners.
- Host: GitHub
- URL: https://github.com/fhightower/k8s-scanner-collector
- Owner: fhightower
- Created: 2022-08-27T00:50:34.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-02T07:47:32.000Z (almost 4 years ago)
- Last Synced: 2025-04-20T01:58:18.169Z (about 1 year ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# k8s Scanner Collector
Script (deployable to k8s) to log requests from vulnerability and exploit scanners.
## Helpful Commands
### Build the Docker Container
To build the container with the name `scanner-collector`, run:
```
docker build -t scanner-collector .
```
### Run the Docker Container
To run the docker container locally, run:
```
docker run -p 80:80 scanner-collector
```
and then the collector will be available locally at http://localhost:80.
### Exec Commands in the Docker Container
You can run commands in a running docker container using:
```
docker exec -it
```
for example, this command drops you into a shell in the docker container:
```
docker exec -it sh
```
Note that this only works on a *running* docker container.