Skip to content

oodenough/web-shell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Simple Web Shell

how to start

  1. Clone this repository
git clone https://github.com/oodenough/web-shell
  1. Switch directory
cd web-shell
  1. Start the service
docker compose up --detach
  1. Optional: Forward the port (if you are running on your server)
ssh -L 8080:localhost:8080 -C -N -l username ip_addr
  1. Visit localhost:8080 in your browser
  2. Run ls command in web shell

Screenshot 2024-08-21 at 11.14.56 PM

how to remove

Stop and Clean all containers and images

docker compose down --rmi all