pwn_docker_example icon indicating copy to clipboard operation
pwn_docker_example copied to clipboard

Example pwnable challenge hosted with docker

Results 10 pwn_docker_example issues
Sort by recently updated
recently updated
newest added

making multi-layer to make it easy to change components, and the current one is not working

update format to run in 2022

In the DOCKERFILE, you need to write "FROM ubuntu:latest" else it does not create the docker image stating--> Step 2/12 : RUN apt-get update ---> Running in ee013a735874 Ign:1 http://archive.ubuntu.com/ubuntu...

Ubuntu 19.10 is no longer officially supported, so to use this Dockerfile, the apt-get repos need to be changed to the archived ubuntu repos. Also, to successfully run the pwndbg...

It's more easy to use the pwntools docker image (for this challenge), I also updated the README with a tip to use code-server for easy code editing from the browser....

The OS version 19.10 is outdated so i updated it to 20.04

Docker gives error ``` E: The repository 'http://security.ubuntu.com/ubuntu eoan-security Release' does not have a Release file. E: The repository 'http://archive.ubuntu.com/ubuntu eoan Release' does not have a Release file. E: The...

## Issue: In [challenge/Dockerfile](https://github.com/LiveOverflow/pwn_docker_example/blob/master/challenge/Dockerfile), the command `RUN apt-get update` is useless since the command updates the packages list, but the packages are not upgraded later. ## Solution: Add `apt-get upgrade`...

Hi, I saw your video about your ctf setup and remembered that vscode had a remote feature to connect to the windows subsystem for linux. turns out you can do...

This pull request addresses two issues in the Dockerfile located in `pwn_docker_example/challenge/Dockerfile`: 1. **Updated Ubuntu Version:** The base image was changed from `ubuntu:19.10` (which is EOL) to `ubuntu:22.04`, ensuring compatibility...