Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-11102-OAuth2-Implicit-Grant-Fragment-Hijacking — CVE-2026-11102에 대한 개념 증명(PoC) 익스플로잇으로, 검증되지 않은 redirect_uri를 통한 OAuth2 암시적 승인(implicit grant) 프래그먼트 하이재킹을 시연하여 액세스 토큰 유출 및 계정 탈취로 이어집니다. | Kitploit
도구/GitHubGitHub/george0papasotiriou/cve-2026-11102-oauth2-implicit-grant-fragment-hijacking
Authentication & AuthorizationExploitationWeb Application ExploitationWeb SecurityPenetration TestingAPI Security
GitHubgeorge0papasotiriou/cve-2026-11102-oauth2-implicit-grant-fragment-hijacking

CVE-2026-11102-OAuth2-Implicit-Grant-Fragment-Hijacking

CVE-2026-11102에 대한 개념 증명(PoC) 익스플로잇으로, 검증되지 않은 redirect_uri를 통한 OAuth2 암시적 승인(implicit grant) 프래그먼트 하이재킹을 시연하여 액세스 토큰 유출 및 계정 탈취로 이어집니다.

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
저장소 보기
41개월 전아직 검토되지 않음

CVE-2026-11102 – OAuth2 Implicit Grant 프래그먼트 하이재킹

프로그램 코드 (Node.js + 익스플로잇)

root@kitploit:~
// oauth_server.js - OAuth2 provider issuing tokens in fragment
const express = require('express');
const app = express();

app.get('/authorize', (req, res) => {
    const redirectUri = req.query.redirect_uri;
    const state = req.query.state || '';
    // Simulate user approval: redirect with access token in fragment
    const token = 'secret_access_token';
    res.redirect(`${redirectUri}#access_token=${token}&state=${state}`);
});

app.listen(3000, () => console.log('OAuth server on :3000'));

CVE-2026-11102 – OAuth2 Implicit Grant 프래그먼트 하이재킹

Severity: Critical

개요

OAuth2 공급자는 redirect_uri를 화이트리스트와 대조하여 검증하지 않고 암시적 승인(implicit grant) 흐름을 구현합니다. 공격자는 악의적인 URI를 제공할 수 있으며, 사용자가 인증한 후 액세스 토큰이 URL 프래그먼트를 통해 공격자의 페이지로 유출됩니다.

취약점 세부 정보

  • 유형: 안전하지 않은 직접 객체 참조 / Redirect URI 검증
  • 영향: 탈취된 액세스 토큰을 통한 계정 탈취.
  • 근본 원인: 권한 부여 서버가 redirect_uri가 사전 등록된 값과 정확히 일치하는지 검증하지 않아, 공격자가 제어하는 도메인으로의 리디렉션이 허용됩니다.

익스플로잇 시연

  1. OAuth 서버를 시작합니다:
    root@kitploit:~
    npm install express
    node oauth_server.js
    
  2. 익스플로잇을 실행합니다:
    root@kitploit:~
    python exploit_fragment_hijack.py
    
도구 다운로드