mirror of
https://github.com/mariocandela/beelzebub.git
synced 2025-07-01 18:47:26 -04:00
first commit
This commit is contained in:
6
configurations/beelzebub.yaml
Normal file
6
configurations/beelzebub.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
core:
|
||||
logging:
|
||||
debug: false
|
||||
debugReportCaller: false
|
||||
logDisableTimestamp: true
|
||||
logsPath: ./logs
|
18
configurations/services/http-80.yaml
Normal file
18
configurations/services/http-80.yaml
Normal file
File diff suppressed because one or more lines are too long
10
configurations/services/http-8080.yaml
Normal file
10
configurations/services/http-8080.yaml
Normal file
@ -0,0 +1,10 @@
|
||||
apiVersion: "v1"
|
||||
protocol: "http"
|
||||
address: ":8080"
|
||||
commands:
|
||||
- regex: "wp-admin"
|
||||
handler: "login"
|
||||
headers:
|
||||
- "Content-Type: text/html"
|
||||
- "Expires: 0"
|
||||
- "Version: 6.42.12"
|
24
configurations/services/ssh-22.yaml
Normal file
24
configurations/services/ssh-22.yaml
Normal file
@ -0,0 +1,24 @@
|
||||
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
|
Reference in New Issue
Block a user