fix(verify): require live sources for green promotion - #67
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
변경 사항
green승급 시 인용된 Tier 1/2 출처 중 하나가 Tier 1 생존 확인 캐시에 살아 있어야 하도록 수정했습니다./verify pr의 crossref 결과 키에 카테고리를 포함해 동일 slug의 카테고리 간 판정 오재사용을 막았습니다.automation-challenge상태로 분리했습니다.실측 결과
2026-09-18에 검증 모듈과 동일한 User-Agent로 확인했습니다.
cpubenchmark.net의 CPU 검색 페이지,gsmarena.com의 기기 페이지,technical.city와notebookcheck.net의 페이지는 200이었습니다.browser.geekbench.com은 403과CF-Mitigated: challenge, Cloudflare challenge HTML을 반환했습니다.phonedb.net은 Python 검증 경로에서 TLS 인증서 검증 오류로 HTTP 상태 없이 실패했습니다. 같은 User-Agent의 curl 요청은 검증된 200을 반환했습니다. 이 TLS 오류는 자동화 차단으로 간주하거나 승급 근거로 사용하지 않습니다.설계 이유
일반 403을 허용하면 존재하지 않거나 권한 없는 URL도 승급될 수 있습니다. 반대로 명시적인 gateway challenge를 dead로 캐시하면 실제 호스트의 자동화 방침이 대량의 죽은 인용처럼 보입니다. 따라서 정확한 challenge 신호와 기존 T1/T2 호스트 분류를 함께 요구합니다.
영향
생존 확인이 실제 승급 조건에 적용되므로, 기존에 green이었지만 출처가 죽었거나 아직 확인되지 않은 레코드는 재검증 시 승급되지 않을 수 있습니다. 따라서 승급률이 변동할 수 있습니다. 다만 명시적 자동화 차단을 dead로 오판정해 정상 T1/T2 인용 출처가 대량으로 보류되는 회귀는 방지합니다.
검증
uv run --extra dev pytest -q tests/verify통과 (67 passed, 1 skipped)git diff --check통과