Ae1
High
- Category
- analysis-evasion
- Content
- .php → references/php.md
- Confidence
- 100% confidence
- Finding
- Referenced artifact was not completely inspected
Security audit
Security checks for vulnerabilities and agentic risk
This is a Spanish-language code review prompt pack with static review rules and templates, and I found no hidden execution, persistence, credential access, or data exfiltration behavior.
Install this skill if you want a Spanish-language AI reviewer that produces structured PR feedback. Review or customize the team-conventions file before use, especially output language, severity thresholds, and project-specific rules. The unsafe code snippets are examples for reviewers to catch, not code that the skill executes.
- .php → references/php.md
- .php → references/php.md
- API keys, tokens, secrets en el código fuente - URLs de bases de datos con credenciales embebidas - Cualquier string que parezca un secret o credencial - Archivos .env commiteados al repositorio ---
❌ Mal:
os.system(f"ping {host}")
subprocess.run(f"ls {directory}", shell=True)
subprocess.call("cat " + filename, shell=True)
✅ Bien:❌ Mal:
os.system(f"ping {host}")
subprocess.run(f"ls {directory}", shell=True)
subprocess.call("cat " + filename, shell=True)
✅ Bien:
subprocess.run(["ping", "-c", "4", host], shell=False)JavaScript: element.innerHTML = userInput;
JavaScript: document.write(userInput);
React: dangerouslySetInnerHTML={{__html: userComment}}
PHP: echo $_GET['name'];
✅ SIEMPRE sanitizar:JavaScript: element.innerHTML = userInput;
JavaScript: document.write(userInput);
React: dangerouslySetInnerHTML={{__html: userComment}}
PHP: echo $_GET['name'];
✅ SIEMPRE sanitizar:Detected: suspicious.exposed_secret_literal