https://github.com/francescodisalesgithub/fuzzing-web-server
web server docker container for fuzzing pratice
https://github.com/francescodisalesgithub/fuzzing-web-server
docker exercise fuzzing hacking pratice webserver-setup
Last synced: over 1 year ago
JSON representation
web server docker container for fuzzing pratice
- Host: GitHub
- URL: https://github.com/francescodisalesgithub/fuzzing-web-server
- Owner: FrancescoDiSalesGithub
- Created: 2022-01-15T00:09:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-15T17:32:42.000Z (over 4 years ago)
- Last Synced: 2025-01-28T03:19:31.356Z (over 1 year ago)
- Topics: docker, exercise, fuzzing, hacking, pratice, webserver-setup
- Language: Dockerfile
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fuzzing-web-server
web server docker container for fuzzing pratice
# How-to Install
## Quick install
If you want a quick install without additional content, run the script:
`./create-container.sh`
## Custom install
Add your files and folders in the web-content folder and then run the script:
`./create-container.sh`
# Running the container
Once you have run the script, you have to check first if the image is in docker's image list:
`docker images`
As you run the command, you should see an image called **fuzzing-web-server**.
You can create the container in two ways:
* Using a docker network
* Exposing the container's port in localhost
In the first solution:
* Run `docker network create mynetwork-name`
* Run `docker run --name=my-fuzzing-web-server --network=mynetwork-name fuzzing-web-server`
In the second solution run:
`docker run --name=my-fuzzing-web-server -p 8080:8080 fuzzing-web-server`