networkstatic/fping

By networkstatic

Updated over 2 years ago

Dockerized FPing for Network Monitoring, Measuring and Troubleshooting

Image
4

100K+

Dockerfile Collection

Dockerfiles can be found at nerdalert/Dockerfiles

networkstatic/fping

Fping for network testing. It's ping on steroids.

docker run -it --rm networkstatic/fping -help
networkstatic/nmap

Nmap is a perenial favorite for security fuzzing.

A couple of example usages:

  • Run the nmap --help to view port scanning options.
docker run -it --rm networkstatic/nmap --help
  • Scan for open ssh (tcp/22) ports on a range of IPs
docker run -it --rm networkstatic/nmap -sT 192.168.1.1-100 -p 22
networkstatic/nginx_kittah

This is an example of a simple change to the static Nginx index.html page. Replace the default index.html with some funs ascii art.

  • Run and listen on port 8080 with the following:
docker run -it --rm  -p 8080:80 networkstatic/nginx_kittah
networkstatic/nyan_cat

For fun testing

docker run -it --rm networkstatic/nyan_cat

Docker Pull Command

docker pull networkstatic/fping