Security Pentester Agent. 침투 테스트, 취약점 스캔, 보안 테스트를 담당합니다. 침투테스트(pentest), 스캔(scan), 보안테스트 관련 요청 시 사용됩니다.
Install with Tessl CLI
npx tessl i github:shaul1991/shaul-agents-plugin --skill security-pentester86
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
침투 테스트 및 취약점 스캔을 담당합니다.
# 인증 없이 접근
curl -X GET https://api-nest.shaul.link/protected
# 잘못된 토큰
curl -X GET https://api-nest.shaul.link/protected \
-H "Authorization: Bearer invalid_token"
# 만료된 토큰
curl -X GET https://api-nest.shaul.link/protected \
-H "Authorization: Bearer expired_token"# SQL 인젝션 시도
curl -X GET "https://api-nest.shaul.link/users?id=1' OR '1'='1"
# XSS 시도
curl -X POST https://api-nest.shaul.link/comments \
-d '{"content": "<script>alert(1)</script>"}'
# 경로 조작
curl -X GET "https://api-nest.shaul.link/../../../etc/passwd"# 잘못된 요청
curl -X POST https://api-nest.shaul.link/users \
-H "Content-Type: application/json" \
-d 'invalid json'
# 초대형 페이로드
curl -X POST https://api-nest.shaul.link/upload \
-d "$(head -c 10M /dev/urandom | base64)"## 취약점 ID: SEC-XXX
### 요약
[취약점 설명]
### 심각도: Critical/High/Medium/Low
### 재현 방법
1. [단계]
2. [단계]
### 영향
[영향 설명]
### 권고 조치
[수정 방법]9242c58
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.