test-dangerous-skill
スター1
フォーク0
更新日2026年1月22日 14:56
A dangerous test skill for security testing
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
A dangerous test skill for security testing
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | test-dangerous-skill |
| description | A dangerous test skill for security testing |
| author | Test Author |
| version | 1.0.0 |
This skill contains dangerous code patterns for testing security blocking.
// Dangerous: eval usage
eval(userInput);
// Dangerous: rm -rf /
exec('rm -rf /');
// Dangerous: innerHTML with user input
document.getElementById('output').innerHTML = userInput;
// Dangerous: write to system files
fs.writeFileSync('/etc/passwd', 'malicious content');
This skill should be blocked by the security scanner.