Canary Assembly Updates

This commit is contained in:
2025-10-03 15:05:11 -06:00
parent b3c68932b0
commit ac6498fb32

View File

@@ -4,13 +4,13 @@
"description": "Self-explanatory.", "description": "Self-explanatory.",
"category": "script", "category": "script",
"type": "powershell", "type": "powershell",
"script": "# Define the file path\n$filePath = \"C:\\Canary.txt\"\n\n# Write some content into the file\n\"SYSTEM Canary is alive.\"ddss | Out-File -FilePath $filePath -Encoding UTF8\n", "script": "# Define the file path\n$filePath = \"C:\\Canary.txt\"\n\n# Write some content into the file\n$env:message | Out-File -FilePath $filePath -Encoding UTF8\n",
"script_lines": [ "script_lines": [
"# Define the file path", "# Define the file path",
"$filePath = \"C:\\Canary.txt\"", "$filePath = \"C:\\Canary.txt\"",
"", "",
"# Write some content into the file", "# Write some content into the file",
"\"SYSTEM Canary is alive.\"ddss | Out-File -FilePath $filePath -Encoding UTF8", "$env:message | Out-File -FilePath $filePath -Encoding UTF8",
"" ""
], ],
"timeout_seconds": 3600, "timeout_seconds": 3600,
@@ -22,12 +22,12 @@
}, },
"variables": [ "variables": [
{ {
"name": "Example Variable", "name": "message",
"label": "Important Label", "label": "Canary Contents",
"type": "string", "type": "string",
"default": "Blah", "default": "Hello World",
"required": false, "required": false,
"description": "Put something into this variable!" "description": "This is the message written inside of the canary file."
} }
], ],
"files": [] "files": []