rceaadb/config.toml
2020-01-02 23:10:28 +01:00

23 lines
562 B
TOML

secret = "your login secret"
[[command]]
# The prefix (a constant in the source code)
# does not need to be specified here.
# It is added automatically.
trigger = "create_file"
# Spaces are not escaped here
command = "touch /tmp/test-rce"
users = [137780880344088576]
[[command]]
trigger = "append_to_file"
# Pipes and redirection are allowed
command = "echo asd >> /tmp/test-rce"
users = [137780880344088576]
[[command]]
trigger = "delete_file"
command = "rm /tmp/test-rce"
# Multiple user IDs can be added here
users = [137780880344088576, 123456789098765]