mirror of
https://github.com/mariocandela/beelzebub.git
synced 2025-07-01 18:47:26 -04:00
24 lines
773 B
YAML
24 lines
773 B
YAML
apiVersion: "v1"
|
|
protocol: "ssh"
|
|
address: ":22"
|
|
commands:
|
|
- regex: "^ls$"
|
|
handler: "Documents Images Desktop Downloads .m2 .kube .ssh .docker"
|
|
- regex: "^pwd$"
|
|
handler: "/home/"
|
|
- regex: "^uname -m$"
|
|
handler: "x86_64"
|
|
- regex: "^docker ps$"
|
|
handler: "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES"
|
|
- regex: "^docker .*$"
|
|
handler: "Error response from daemon: dial unix docker.raw.sock: connect: connection refused"
|
|
- regex: "^uname$"
|
|
handler: "Linux"
|
|
- regex: "^ps$"
|
|
handler: " PID TTY TIME CMD\n21642 ttys000 0:00.07 /bin/dockerd"
|
|
- regex: "^(.+)$"
|
|
handler: "command not found"
|
|
serverVersion: "OpenSSH"
|
|
serverName: "ubuntu"
|
|
passwordRegex: "^(root|qwerty)$"
|
|
deadlineTimeoutSeconds: 60 |