An open API service indexing awesome lists of open source software.

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.

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.