Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/duthaho/copilot-instructions/security-and-owaspgit clone --depth 1 https://github.com/duthaho/copilot-instructionsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/duthaho/copilot-instructions/security-and-owasp)<a href="https://agentmods.dev/instructions/duthaho/copilot-instructions/security-and-owasp"><img src="https://agentmods.dev/badge/instructions/duthaho/copilot-instructions/security-and-owasp.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.02124 | $0.02124 |
| Opus 5 | $0.01062 | $0.01062 |
| Sonnet 5 | $0.00425 | $0.00425 |
| Haiku 4.5 | $0.00212 | $0.00212 |
Grade A, and why
copilot-instructions security-and-owasp.instructions.md scanned grade A with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
from urllib.parse import urlparse Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
subprocess.run(['ls', '-la', user_directory], check=True) How it starts
The opening of the file, as written. The whole thing — 297 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Secure Coding and OWASP Guidelines for Python
Instructions
Your primary directive is to ensure all Python code you generate, review, or refactor is secure by default. You must operate with a security-first mindset. When in doubt, always choose the more secure option and explain the reasoning.
1. A01: Broken Access Control & A10: SSRF
-
Enforce Principle of Least Privilege: Always default to the most restrictive permissions. When generating access control logic, explicitly check the user's rights against the required permissions.
-
Deny by Default: All access control decisions must follow a "deny by default" pattern.
-
Validate All Incoming URLs for SSRF: When the server needs to make a request to a URL provided by a user, treat it as untrusted. Use allow-list-based validation.
# GOOD: Validate URL against allow list from urllib.parse import urlparse ALLOWED_HOSTS = ['api.example.com', 'cdn.example.com'] def is_safe_url(url: str) -> bool: parsed = urlparse(url) return parsed.hostname in ALLOWED_HOSTS and parsed.scheme in ['https'] -
Prevent Path Traversal: Sanitize file paths to prevent directory traversal attacks.
# GOOD: Use pathlib for safe path handling from pathlib import Path def safe_read_file(filename: str, base_dir: Path) -> str: file_path = (base_dir / filename).resolve() if not str(file_path).startswith(str(base_dir.resolve())): raise ValueError("Path traversal detected") return file_path.read_text()
2. A02: Cryptographic Failures
-
Use Strong, Modern Algorithms: For password hashing, use bcrypt, Argon2, or scrypt. Never use MD5 or SHA-1 for passwords.
# GOOD: Use bcrypt for password hashing import bcrypt def hash_password(password: str) -> bytes: return bcrypt.hashpw(password.encode('utf-8'), bcrypt.gensalt()) def verify_password(password: str, hashed: bytes) -> bool: return bcrypt.checkpw(password.encode('utf-8'), hashed)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 297 lines · 2,124 tokens per session scan A 0aa26eabe445
copilot-instructions security-and-owasp.instructions.md is an instructions file published in the GitHub repository duthaho/copilot-instructions (7 stars, last pushed 10mo ago), licensed MIT. It adds 2,124 tokens to every session, about $0.0106 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
copilot-instructions copilot-instructions.md
Instructions for SebastienDegodez/copilot-instructions, covering copilot instructions, language policy, development code generation and workflow implementation.
apex-accelerator python.instructions.md
Python coding conventions for diagram generation, MCP servers, and tooling scripts.
apm python.instructions.md
Python development guidelines.
apex-accelerator powershell.instructions.md
PowerShell cmdlet and scripting best practices based on Microsoft guidelines.
nlp2sql CLAUDE.md
Claude Code instructions for luiscarbonel1991/nlp2sql, covering claude.md, project overview, documentation, development commands and install dependencies.
loadout playwright-python.instructions.md
Playwright Python Test Generation Instructions.