소스 정보
- 저장소
- asdfgh1445/ctf-super-hub
- 최근 소스 활동
- 2026년 4월 23일 18:07
- 감지된 SKILL.md 언어
- 영어
- 스타
- 790
- 포크
- 97
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/asdfgh1445/ctf-super-hub --skill strix명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | Strix•开放重定向 |
| description | Strix 开放重定向测试手册,覆盖钓鱼跳转、OAuth 令牌窃取与白名单绕过;触发名:strix-open-redirect |
Open redirects enable phishing, OAuth/OIDC code and token theft, and allowlist bypass in server-side fetchers that follow redirects. Treat every redirect target as untrusted: canonicalize and enforce exact allowlists per scheme, host, and path.
Server-Driven Redirects
Client-Driven Redirects
window.location, meta refresh, SPA routersOAuth/OIDC/SAML Flows
redirect_uri, post_logout_redirect_uri, RelayState, returnTo/continue/nextMulti-Hop Chains
/out or /r redirectorsredirect, url, next, return_to, returnUrl, continue, goto, target, callback, out, dest, back, to, r, uredirect_uri, post_logout_redirect_uri, RelayState, staterouter.push/replace, location.assign/href, meta refresh, window.openHost, X-Forwarded-Host/Proto, Referer; server-side Location echoUserinfo
https://trusted.com@evil.com → validators parse host as trusted.com, browser navigates to evil.comtrusted.com%40evil.com, a%40evil.com%40trusted.comBackslash and Slashes
https://trusted.com\evil.com, https://trusted.com\@evil.com, ///evil.com, /\evil.comWhitespace and Control
http%09://evil.com, http%0A://evil.com, trusted.com%09evil.comFragment and Query
trusted.com#@evil.com, trusted.com?//@evil.com, ?next=//evil.com#@trusted.comUnicode and IDNA
truѕted.com (Cyrillic), trusted.com。evil.com (full-width dot), trailing dot%2f%2fevil.com, %252f%252fevil.comhTtPs://evil.com, http:evil.com[::ffff:127.0.0.1]/out?url=/\evil.comCommon Mistakes
trusted.com.evil.com*.trusted.com also matches attacker.trusted.com.evil.netdata:, javascript:, file:, gopher: acceptedRobust Validation
// and unknown schemesRedirect URI Abuse
https://trusted.com → https://trusted.com.evil.com/oauth/../../@evil.compost_logout_redirect_uri often less strictly validatedJavaScript Redirects
location.href/assign/replace using user inputcontent=0;url=USER_INPUTrouter.push(searchParams.get('next'))https://trusted.example/out?url=https://attacker.tld/cb/login?next=https://attacker.tld/fakehttps://trusted.example/out?u=http://169.254.169.254/latest/meta-datapost_logout_redirect_uri and less-discussed flows; they're often looserRedirection is safe only when the final destination is constrained after canonicalization. Enforce exact origins, verify per hop, and treat client-provided destinations as untrusted across every stack.