Files
2nd/10_Wiki/Topic_Programming/Architecture/Reachability_Analysis.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
2026-07-05 00:33:48 +09:00

5.7 KiB

id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
id title category status canonical_id aliases duplicate_of source_trust_level confidence_score verification_status tags raw_sources last_reinforced github_commit tech_stack
wiki-2026-0508-reachability-analysis Reachability Analysis 10_Wiki/Topics verified self
Vulnerability Reachability
SCA Reachability
Function-level Reachability
none A 0.9 applied
security
sca
supply-chain
static-analysis
2026-05-10 pending
language framework
multiple snyk-endor-semgrep

Reachability Analysis

매 한 줄

"매 vulnerable function 매 actually called 인지 — 매 noise 80%+ filter". 매 SCA (Software Composition Analysis) 매 evolution. Endor Labs / Snyk Reachability / Semgrep Supply Chain / Socket — 매 2026 standard for security triage.

매 핵심

매 reachability levels

  • Package-level: 매 dependency installed? (CVE found, but unused — 매 false positive 80%+)
  • Module-level: 매 module imported?
  • Function-level: 매 vulnerable function in call graph from app entry?
  • Conditional reachability: 매 reachable only under specific input?

매 techniques

  • Static call graph: 매 AST + import resolution → call edges (Python: pyan, JS: madge, Java: WALA).
  • Points-to analysis: 매 pointer/reference flow — Soot, Doop.
  • Symbolic execution: 매 path conditions (KLEE, angr) — heavy.
  • Dynamic tracing: 매 runtime instrumentation (Sentry, Datadog ASM).
  • Hybrid: 매 static + runtime — 매 most accurate.

매 응용

  1. CVE triage — 매 1000 alerts → 매 50 actually exploitable.
  2. License risk — 매 GPL function actually used?
  3. Dead code elimination — 매 unreachable → tree-shake.
  4. Compliance — FedRAMP / SLSA evidence.
  5. SBOM augmentation — VEX (Vulnerability Exploitability eXchange) generation.

💻 패턴

Python — call graph with pyan/jedi

import jedi
def reachable_funcs(entry_file: str, target_func: str) -> bool:
    visited, queue = set(), [entry_file]
    while queue:
        f = queue.pop()
        if f in visited: continue
        visited.add(f)
        script = jedi.Script(path=f)
        for ref in script.get_names(references=True):
            if ref.full_name and target_func in ref.full_name:
                return True
            if ref.module_path and ref.module_path != f:
                queue.append(str(ref.module_path))
    return False

JavaScript — madge call graph

npx madge --json src/index.js > graph.json
const graph = require('./graph.json');
function reachable(entry, target, visited = new Set()) {
  if (visited.has(entry)) return false;
  visited.add(entry);
  if (entry === target) return true;
  return (graph[entry] || []).some(d => reachable(d, target, visited));
}

Semgrep Supply Chain rule

rules:
  - id: lodash-prototype-pollution-reachable
    languages: [javascript]
    pattern: _.merge($DEST, $SRC)
    metadata:
      cve: CVE-2020-8203
      package: lodash
      vulnerable-versions: "<4.17.20"

SBOM + VEX (CycloneDX)

{
  "vulnerabilities": [{
    "id": "CVE-2024-12345",
    "affects": [{"ref": "pkg:npm/lodash@4.17.15"}],
    "analysis": {
      "state": "not_affected",
      "justification": "vulnerable_code_not_in_execute_path",
      "detail": "merge() function not called from any entry point"
    }
  }]
}

Java — Soot points-to

// pseudocode for Soot framework
PackManager.v().getPack("wjtp").add(new Transform("wjtp.callgraph", new SceneTransformer() {
    protected void internalTransform(String phase, Map opts) {
        CallGraph cg = Scene.v().getCallGraph();
        Set<MethodOrMethodContext> reachable = new HashSet<>();
        Iterator<MethodOrMethodContext> it = cg.sourceMethods();
        while (it.hasNext()) reachable.add(it.next());
        // intersect with vulnerable methods
    }
}));

Runtime reachability (Datadog ASM-style)

# Instrument vulnerable function
@trace_call
def vulnerable_lib_func(*args):
    record_call_site(inspect.stack())
    return original(*args)
# After load test → know which CVEs actually hit

CI gate (GitHub Actions)

- uses: endorlabs/scan-action@v3
  with:
    namespace: my-org
    reachability: function
    fail-on: critical-reachable

매 결정 기준

상황 Tool
매 JS/TS monorepo Socket / Snyk
매 Java/Kotlin Endor Labs / Snyk
매 Python Semgrep SC / Endor
매 polyglot enterprise Endor Labs
매 OSS, free OSV-Scanner + custom call graph
매 runtime accuracy Datadog ASM / Aikido / Oligo

기본값: 매 2026 매 hybrid — static reachability gate in CI + runtime confirmation in prod.

🔗 Graph

🤖 LLM 활용

언제: 매 vulnerability summary, 매 fix PR generation (deps upgrade + breaking change risk), 매 VEX justification drafting. 언제 X: 매 call graph itself — LLM 매 hallucinate edges. 매 deterministic tools (Soot, jedi).

안티패턴

  • All CVEs are critical: 매 noise overwhelm — alert fatigue. 매 reachability filter 필수.
  • Static only: 매 dynamic dispatch / reflection 매 miss. 매 runtime confirmation.
  • No transitive coverage: 매 only direct deps — transitive vulns invisible.
  • Reachability = exploitability: 매 reachable ≠ exploitable (auth, sandboxing). 매 still triage.

🧪 검증 / 중복

  • Verified (Endor Labs research; Snyk reachability docs; OWASP Dependency Check).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — full security reachability entry