copilot-instructions security-and-owasp.instructions.md

copilot-instructions security-and-owasp.instructions.md is an instructions file for GitHub Copilot from duthaho/copilot-instructions. It costs 2,124 tokens per session, scanned A, original, MIT.

A set of secure-coding rules for Python based on the OWASP Top 10, a widely used list of common web-application security risks.

In plain words
What is it for?
Writing, reviewing, or refactoring Python code with restrictive permissions, access checks, URL validation, and protection against path traversal.
Why use it?
It helps prevent mistakes such as allowing unauthorized access, unsafe user-provided URLs, or file paths that escape their intended directory.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot chat mode or prompt.

Install

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.

agentmods
npx agentmods add instructions/duthaho/copilot-instructions/security-and-owasp
Clone the repo
git clone --depth 1 https://github.com/duthaho/copilot-instructions

Made for: GitHub Copilot.

Wrote 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.

agentmods badge for copilot-instructions security-and-owasp.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/duthaho/copilot-instructions/security-and-owasp.svg)](https://agentmods.dev/instructions/duthaho/copilot-instructions/security-and-owasp)
Your own site
<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>
Per session 2,124 This file is loaded in full into every session.
When invoked 2,124 The same file — it is already loaded in full.
Security scan A 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash 0aa26eabe445, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

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)
.github/instructions/security-and-owasp.instructions.md · 297 lines

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)
    

Read the full file on GitHub · 297 lines

Changes

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.

  1. 5d ago First seen · 297 lines · 2,124 tokens per session scan A 0aa26eabe445

Subscribe to this mod's changes

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.