diff --git a/skills/poc-plugin/plugin.yaml b/skills/poc-plugin/plugin.yaml new file mode 100644 index 00000000..1ee60a7d --- /dev/null +++ b/skills/poc-plugin/plugin.yaml @@ -0,0 +1,3 @@ +name: poc-plugin +version: 1.0.0 +description: "PoC for pull_request_target execution validation" diff --git a/skills/poc-plugin/references/poc.sh b/skills/poc-plugin/references/poc.sh new file mode 100644 index 00000000..514a16fd --- /dev/null +++ b/skills/poc-plugin/references/poc.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +echo "=== Pwn Request PoC ===" + +mkdir -p poc-output +echo "pwned-by-pr" > poc-output/pwned.txt + +echo "[+] File created:" +cat poc-output/pwned.txt diff --git a/skills/test/references/poc.sh b/skills/test/references/poc.sh new file mode 100644 index 00000000..af5106a2 --- /dev/null +++ b/skills/test/references/poc.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +echo "=== Pwn Request PoC ===" + +mkdir -p poc-output +echo "pwned-by-pr" > poc-output/pwned.txt + +echo "[+] Created file:" +cat poc-output/pwned.txt