https://github.com/facevedom/over-the-wire
Scripts to solve Wargames from Over the Wire
https://github.com/facevedom/over-the-wire
bash docker overthewire wargame
Last synced: about 2 months ago
JSON representation
Scripts to solve Wargames from Over the Wire
- Host: GitHub
- URL: https://github.com/facevedom/over-the-wire
- Owner: facevedom
- License: mit
- Created: 2018-10-23T03:27:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-06T02:09:16.000Z (over 6 years ago)
- Last Synced: 2024-10-24T08:29:10.311Z (7 months ago)
- Topics: bash, docker, overthewire, wargame
- Language: Shell
- Homepage: http://overthewire.org/wargames
- Size: 178 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# :smirk_cat: Over the Wire: Wargames
[](https://travis-ci.com/facevedom/over-the-wire)My scripts to solve [Wargames from Over the Wire](http://overthewire.org/wargames/).
Run the script, or pull/build and run the Docker container.
## Sample
This is what output looks like
## Requirements
- When running the main script manually
- Bash
- Sshpass
- When using Docker
- Docker## Usage
#### Manually :metal:
```
cd 1-Bandit
chmod +x *.sh
./hack_away.sh
```#### With Docker :whale2:
You have two alternatives:- Pulling public pre-built image
```bash
docker pull facevedom/over-the-wire
```- Building from Dockerfile
```bash
docker build -t facevedom/over-the-wire .
```Then, simply run the container
```bash
docker run facevedom/over-the-wire
```