Additional Assemblies Added

This commit is contained in:
2025-10-03 05:45:45 -06:00
parent 1466473b0a
commit 015977c51e
2 changed files with 34 additions and 34 deletions

View File

@@ -0,0 +1,34 @@
{
"version": 1,
"name": "Write Canary File to C:\\Canary.txt",
"description": "Self-explanatory.",
"category": "script",
"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_lines": [
"# Define the file path",
"$filePath = \"C:\\Canary.txt\"",
"",
"# Write some content into the file",
"\"SYSTEM Canary is alive.\"ddss | Out-File -FilePath $filePath -Encoding UTF8",
""
],
"timeout_seconds": 3600,
"sites": {
"mode": "specific",
"values": [
"1"
]
},
"variables": [
{
"name": "Example Variable",
"label": "Important Label",
"type": "string",
"default": "Blah",
"required": false,
"description": "Put something into this variable!"
}
],
"files": []
}