rceaadb/config.toml
2020-01-03 11:19:53 +01:00

23 lines
538 B
TOML

secret = "your login secret"
prefix = ">"
[[command]]
# The prefix does not need to be added here.
# That is done 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]