rceaadb/config.toml

23 lines
562 B
TOML
Raw Normal View History

2020-01-02 23:10:28 +01:00
secret = "your login secret"
2020-01-02 17:51:02 +01:00
[[command]]
2020-01-02 23:10:28 +01:00
# 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]