fix: remove custom command from setAlarm to prevent command injection

This commit is contained in:
2026-06-18 15:23:14 +02:00
parent 75b56e2f1e
commit 124a6a4916
3 changed files with 21 additions and 7 deletions
+19 -3
View File
@@ -121,6 +121,22 @@ def test_set_alarm_default_command_append():
client.post("/graphql", json={"query": mutation_delete}, headers=headers)
def test_set_alarm_rejects_custom_command():
"""Custom command argument must be rejected to prevent crontab injection."""
headers = {"X-API-Key": "test-secret"}
mutation = """
mutation {
setAlarm(cronExpression: "0 9 * * *", command: "rm -rf /") {
id
}
}
"""
res = client.post("/graphql", json={"query": mutation}, headers=headers)
assert res.status_code == 200
assert "errors" in res.json()
assert "command" in str(res.json()["errors"])
def test_graphql_workflow():
headers = {"X-API-Key": "test-secret"}
@@ -139,7 +155,7 @@ def test_graphql_workflow():
# 2. Set alarm
mutation_set = """
mutation {
setAlarm(cronExpression: "30 7 * * *", command: "python wecker.py", isEnabled: true) {
setAlarm(cronExpression: "30 7 * * *", isEnabled: true) {
id
cronExpression
command
@@ -151,7 +167,7 @@ def test_graphql_workflow():
assert res.status_code == 200
alarm = res.json()["data"]["setAlarm"]
assert alarm["cronExpression"] == "30 7 * * *"
assert alarm["command"] == "python wecker.py"
assert "wecker.py" in alarm["command"]
assert alarm["isEnabled"] is True
alarm_id = alarm["id"]
@@ -176,7 +192,7 @@ def test_graphql_workflow():
# 5. Update alarm
mutation_update = f"""
mutation {{
setAlarm(id: "{alarm_id}", cronExpression: "0 8 * * *", command: "python wecker.py", isEnabled: false) {{
setAlarm(id: "{alarm_id}", cronExpression: "0 8 * * *", isEnabled: false) {{
id
cronExpression
isEnabled