Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mainek00n/vuls-targets

The OS environment to be scanned by Vuls(https://github.com/future-architect/vuls) is provided in a Docker container.
https://github.com/mainek00n/vuls-targets

docker vuls

Last synced: 2 months ago
JSON representation

The OS environment to be scanned by Vuls(https://github.com/future-architect/vuls) is provided in a Docker container.

Awesome Lists containing this project

README

        

# vuls-targets

## Usage
### docker
```terminal
# For Raspbian
$ docker run --rm --privileged multiarch/qemu-user-static --reset -p yes

$ docker build --network host -t vuls-target:[os:release] -f [:os/:release]/Dockerfile .

$ docker run -itd -p 2222:22 --name vuls-target vuls-target:[tag]
$ ssh-keygen -f "$HOME/.ssh/known_hosts" -R "[127.0.0.1]:2222" && ssh -i vuls-targets-docker/.ssh/id_rsa -p 2222 [email protected]
$ docker stop vuls-target
$ docker rm vuls-target
```

### vagrant
```terminal
$ vagrant plugin install vagrant-vbguest vagrant-libvirt winrm winrm-elevated

$ cd
$ vagrant up --provision
$ ssh-keygen -f "$HOME/.ssh/known_hosts" -R "[127.0.0.1]:2222" && ssh -i vuls-targets-docker/.ssh/id_rsa -p 2222 [email protected]
$ vagrant destroy -f
```