mirror of
https://github.com/j3ssie/osmedeus.git
synced 2026-08-17 21:25:49 +02:00
SSH Test Container
Ubuntu 22.04 container with SSH server for testing osmedeus SSH runner.
Quick Start
# Build and start
docker-compose up -d --build
# Test SSH connection
ssh -i id_ed25519 -p 2222 testuser@localhost
# Stop
docker-compose down
Credentials
- User:
testuser - Password:
testpass - SSH Key:
id_ed25519(in this directory) - Port:
2222
SSH Command Examples
# Using key authentication
ssh -i id_ed25519 -p 2222 -o StrictHostKeyChecking=no testuser@localhost
# Run command
ssh -i id_ed25519 -p 2222 -o StrictHostKeyChecking=no testuser@localhost "whoami"