https://github.com/wlanboy/webshell
Spring Boot Web Shell
https://github.com/wlanboy/webshell
docker spring-boot-web webshell
Last synced: 10 months ago
JSON representation
Spring Boot Web Shell
- Host: GitHub
- URL: https://github.com/wlanboy/webshell
- Owner: wlanboy
- License: apache-2.0
- Created: 2018-10-31T18:03:52.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2025-08-30T18:06:31.000Z (10 months ago)
- Last Synced: 2025-08-30T20:21:31.696Z (10 months ago)
- Topics: docker, spring-boot-web, webshell
- Language: Java
- Homepage:
- Size: 109 KB
- Stars: 7
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# WebShell
Spring Boot based webfrontend for local shell access
## Dependencies
At least: Java 11 and Maven 3.5
## Change passwords for users "user" and "test"
- https://github.com/wlanboy/WebShell/blob/main/src/main/resources/application.yml
- use a BCryptPasswordEncoder to generate your own password hashes
## Build Service Config
- mvn package -DskipTests=true
### Windows
- java -jar target\webshell-0.1.2-SNAPSHOT.jar
### Linux (service enabled)
- ./target/webshell-0.1.2-SNAPSHOT.jar start
## Docker Hub
https://hub.docker.com/r/wlanboy/webshell
## Docker build
- docker build -t serviceconfig:latest . --build-arg JAR_FILE=./target/webshell-0.1.2-SNAPSHOT.jar
## Docker run
- docker run --name webshell -d -p 8080:8001 -v /tmp:/tmp wlanboy/webshell:latest