Powershell-Copilot-Standards securitycompliance.instructions.md

Powershell-Copilot-Standards securitycompliance.instructions.md is an instructions file for GitHub Copilot from fadwen/Powershell-Copilot-Standards. It costs 6,468 tokens per session, scanned A, original, MIT.

A set of instructions for building safer PowerShell solutions, including input checks, credential handling, audit logs, access controls, and threat mitigation. It also explains how these practices can support work related to regulations such as SOX, GDPR, and HIPAA.

In plain words
What is it for?
Use it when designing or reviewing PowerShell code that handles sensitive data, credentials, permissions, or audit records. It also helps assess threats and choose protections based on how sensitive the system is.
Why use it?
It helps reduce common security risks and organize the evidence that audits may require. Following these patterns alone does not make a system legally compliant.

Instructions file for GitHub Copilot

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/fadwen/powershell-copilot-standards/securitycompliance
Clone the repo
git clone --depth 1 https://github.com/fadwen/Powershell-Copilot-Standards

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 Powershell-Copilot-Standards securitycompliance.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/fadwen/powershell-copilot-standards/securitycompliance.svg)](https://agentmods.dev/instructions/fadwen/powershell-copilot-standards/securitycompliance)
Your own site
<a href="https://agentmods.dev/instructions/fadwen/powershell-copilot-standards/securitycompliance"><img src="https://agentmods.dev/badge/instructions/fadwen/powershell-copilot-standards/securitycompliance.svg" alt="Measured on agentmods" height="20"></a>
Per session 6,468 This file is loaded in full into every session.
When invoked 6,468 The same file — it is already loaded in full.
Security scan A 0 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 $0.06468 $0.06468
Opus 5 $0.03234 $0.03234
Sonnet 5 $0.01294 $0.01294
Haiku 4.5 $0.00647 $0.00647

Measured 4d ago against content hash 64c8fe01170d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

Powershell-Copilot-Standards securitycompliance.instructions.md scanned grade A with 0 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 4d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/instructions/securitycompliance.instructions.md · 749 lines

How it starts

The opening of the file, as written. The whole thing — 749 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PowerShell Security and Compliance Implementation

Implement security controls for PowerShell solutions: input validation, credential handling, audit logging, and threat mitigation. Apply security-by-design principles throughout development.

These patterns support regulatory work such as SOX, GDPR, and HIPAA by producing the audit trails, access controls, and data-handling evidence those programmes rely on. They do not make a system compliant on their own — that depends on controls, evidence, and audit outside this codebase. Do not describe generated code as compliant with any regulation.

Security Assessment and Implementation

Security Requirements Analysis

Evaluate and implement security controls based on:

Security Classification
  • Public: No restrictions, publicly accessible code
  • Internal: Internal use only, basic access controls required
  • Confidential: Sensitive data, enhanced protection required
  • Restricted: Highly sensitive, strict access controls mandatory
  • Top Secret: Maximum security, compartmentalized access
Threat Model Assessment

Identify and mitigate threats using STRIDE methodology:

  • Spoofing: Identity verification and authentication controls
  • Tampering: Data integrity and code signing requirements
  • Repudiation: Audit logging and non-repudiation controls
  • Information Disclosure: Data protection and access controls
  • Denial of Service: Availability and resilience measures
  • Elevation of Privilege: Authorization and privilege management

Input Validation and Sanitization

Implement comprehensive input validation for all user inputs:

function Protect-UserInput {
    param(
        [Parameter(Mandatory = $true)]
        [string]$InputString,
        [ValidateSet('ComputerName', 'FileName', 'UserName', 'FilePath', 'EmailAddress')]
        [string]$InputType = 'General',
        [string]$CorrelationId = [System.Guid]::NewGuid().ToString()
    )

    # Log security validation attempt
    Write-SecurityLog -SecurityEventType 'DataValidation' -Message "Input validation requested" -Outcome 'Attempt' -CorrelationId $CorrelationId -SecurityContext @{
        InputType = $InputType
        InputLength = $InputString.Length
    }

    # Length validation
    if ($InputString.Length -gt 1000) {
        throw [SecurityException]::new("Input exceeds maximum length of 1000 characters", 'InputValidation', 'Length-Check')
    }

    # Type-specific validation patterns
    switch ($InputType) {
        'ComputerName' {
            if ($InputString -notmatch '^[a-zA-Z0-9\-\.]+$') {
                throw [SecurityException]::new("Invalid computer name format", 'InputValidation', 'Format-Check')
            }
        }
        'FileName' {
            $invalidChars = [System.IO.Path]::GetInvalidFileNameChars()
            foreach ($char in $invalidChars) {
                if ($InputString.Contains($char)) {
                    throw [SecurityException]::new("Invalid file name character: $char", 'InputValidation', 'Character-Check')
                }
            }
        }
        'FilePath' {
            # Prevent path traversal attacks
            $normalizedPath = [System.IO.Path]::GetFullPath($InputString)
            if ($normalizedPath.Contains('..') -or $normalizedPath.Contains('~')) {
                throw [SecurityException]::new("Path traversal attempt detected", 'InputValidation', 'Path-Traversal')
            }
        }
        'EmailAddress' {
            if ($InputString -notmatch '^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$') {
                throw [SecurityException]::new("Invalid email address format", 'InputValidation', 'Email-Format')
            }
        }
    }

    # Check for common injection patterns
    $dangerousPatterns = @(
        ';',           # Command separator
        '&',           # Command separator
        '|',           # Pipe operator
        '<',           # Redirect
        '>',           # Redirect
        '`',           # Backtick execution
        '$(',          # Subexpression
        'Invoke-',     # Dangerous cmdlets
        'iex',         # Invoke-Expression alias
        'Remove-',     # Destructive operations
        'Format-'      # Format string attacks
    )

    foreach ($pattern in $dangerousPatterns) {
        if ($InputString -like "*$pattern*") {
            Write-SecurityLog -SecurityEventType 'SecurityViolation' -Message "Dangerous pattern detected in input" -Outcome 'Failure' -CorrelationId $CorrelationId -SecurityContext @{
                Pattern = $pattern
                InputSample = $InputString.Substring(0, [Math]::Min(50, $InputString.Length))
            } -RiskLevel 'High'

            throw [SecurityException]::new("Input contains potentially dangerous pattern: $pattern", 'InputValidation', 'Injection-Prevention')
        }
    }

    Write-SecurityLog -SecurityEventType 'DataValidation' -Message "Input validation successful" -Outcome 'Success' -CorrelationId $CorrelationId
    return $InputString.Trim()
}

Read the full file on GitHub · 749 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. 4d ago First seen · 749 lines · 6,468 tokens per session scan A 64c8fe01170d

Subscribe to this mod's changes

Powershell-Copilot-Standards securitycompliance.instructions.md is an instructions file published in the GitHub repository fadwen/Powershell-Copilot-Standards (18 stars, last pushed 4d ago), licensed MIT. It adds 6,468 tokens to every session, about $0.0323 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories