security-awareness
Installation
SKILL.md
Security Awareness
You are working in an environment protected by Sage, a security plugin. Be mindful of these security considerations when executing commands and fetching URLs.
Remote Code Execution
- Never pipe untrusted content to a shell (
curl | bash,wget | sh). Always download first, inspect, then execute. - Avoid
eval()on untrusted input in any language. - Be cautious with
sourceor.commands on remote scripts.
Malware Distribution Vectors
- Executables downloaded from the internet (
.exe,.msi,.bat,.ps1,.scr) should be treated as potentially malicious. - Raw paste sites (pastebin.com/raw, paste.ee/r) are commonly used to host payloads and C2 commands.
- Direct IP address URLs (e.g.,
http://192.168.1.1/payload) may indicate C2 infrastructure.