11 KiB
Jenkins SCM URL Secret/Xml Hardening
이 파일을 읽는 구현 에이전트에게
CODE_REVIEW-*-G??.md의 구현 에이전트 소유 섹션 작성은 필수다. 구현 후 검증을 실행하고, 실제 구현 내용과 검증 출력을 review stub에 채운 뒤 active 파일을 그대로 둔 채 리뷰 준비를 보고한다. 종결, archive, complete.log 작성은 code-review-skill 전용이다.
구현 중 사용자 결정, 사용자 소유 외부 환경 prerequisite, 또는 범위 충돌 없이는 안전하게 진행할 수 없는 경우 active CODE_REVIEW-*-G??.md의 사용자 리뷰 요청 섹션에 정확한 근거를 기록하고 멈춘다. 사용자에게 직접 묻거나, 채팅 선택지를 제시하거나, request_user_input을 호출하거나, USER_REVIEW.md를 직접 만들거나, archive/log/complete.log를 작성하지 않는다. 후속 에이전트가 명령 재실행 또는 산출물 수집으로 해소할 수 있는 증거 공백은 사용자 리뷰 요청 사유가 아니다.
배경
macOS certified Jenkins job 생성 스크립트는 현재 remote.origin.url을 그대로 Jenkins XML과 dry-run 출력에 넣는다. HTTPS remote에 userinfo credential이 들어 있으면 dry-run/stdout 또는 Jenkins job config에 비밀값이 남을 수 있고, URL의 XML 특수 문자는 config XML을 깨뜨릴 수 있다. 현재 마일스톤 완료 체크를 다시 여는 항목은 아니며, 검토 중 발견한 후속 보안 하드닝이다.
사용자 리뷰 요청 흐름
구현 중 차단 조건은 active review stub의 사용자 리뷰 요청 섹션에 기록한다. 해당 섹션은 agent-ops/skills/common/_templates/implementation-user-review-request-section.md 형식을 따르며, 코드리뷰가 요청 정당성을 검증하고 실제 USER_REVIEW.md 작성 여부를 결정한다. 구현 에이전트는 직접 사용자에게 묻지 않는다.
분석 결과
읽은 파일
AGENTS.md지시 본문agent-ops/rules/project/rules.mdagent-ops/rules/common/rules-roadmap.mdagent-ops/skills/common/router.mdagent-ops/skills/common/analyze-roadmap-position/SKILL.mdagent-ops/skills/common/update-roadmap/SKILL.mdagent-ops/skills/common/code-review/SKILL.mdagent-ops/skills/common/plan/SKILL.mdagent-ops/skills/common/_templates/implementation-user-review-request-section.mdagent-test/local/rules.mdagent-test/local/macos-platform-smoke.mdagent-test/local/macos-remote-build-smoke.mdagent-ops/rules/project/domain/macos-platform/rules.mdagent-roadmap/current.mdagent-roadmap/phase/security-distribution/PHASE.mdagent-roadmap/phase/security-distribution/milestones/macos-distribution.mdscripts/build-certified-macos.shscripts/setup-appsok-ci-secrets.shscripts/upsert-jenkins-certified-job.shtest/certified_macos_scripts_test.dartmacos/Runner/Configs/AppInfo.xcconfigmacos/Runner/Info.plistmacos/Runner/Release.entitlementsmacos/Runner.xcodeproj/project.pbxprojdocs/macos-certified-build.md.gitignore.sops.yamlsecrets/appsok.ci.sops.json
테스트 환경 규칙
test_env=local.agent-test/local/rules.md를 읽었고, macOS platform/certified build 관련 검증에는macos-platform-smoke.md와macos-remote-build-smoke.md를 적용했다.- 이번 후속 이슈의 최종 검증은 스크립트 syntax check와 원격 runner의 focused Flutter test로 고정한다.
<확인 필요>값은 이 계획의 명령 결정에 사용하지 않는다.
테스트 커버리지 공백
- HTTP(S) SCM URL userinfo credential 거부: 현재 테스트 없음.
test/certified_macos_scripts_test.dart에 dry-run 실행 기반 regression test를 추가해야 한다. - Jenkins XML URL escaping: 현재 테스트 없음.
APPSOK_SCM_URLoverride를 통해 dry-run XML 출력의&,<,>escape를 검증해야 한다. - 기존 Jenkins token curl config 은닉 테스트는 유지한다.
심볼 참조
- renamed/removed symbol: none.
분할 판단
- split decision policy를 먼저 평가했다.
- 변경은
scripts/upsert-jenkins-certified-job.sh와 그 focused regression test 하나의 ownership boundary에 묶인다. - shared API/foundation과 call-site rollout이 분리되지 않고, 외부 Jenkins apply 없이 dry-run으로 결정적 검증이 가능하다.
- 실패 시 같은 스크립트와 같은 테스트를 함께 수정해야 하므로 단일 plan이 더 작고 리뷰 가능하다.
범위 결정 근거
scripts/setup-appsok-ci-secrets.sh의 secret prompt echo 문제는 이미 작은 이슈로 직접 수정했으므로 이 plan에 포함하지 않는다.- Jenkins job XML의 전체 구조, node label, artifact path, notary/build script 동작은 변경하지 않는다.
- 실제 Jenkins
--apply실행, 원격 secret 재설정, certified build 재실행은 이 하드닝 검증에 필요하지 않다.
빌드 등급
local-G06: shell script 보안 하드닝이지만 파일 수와 검증 범위가 작고, dry-run/Flutter test로 결정적 회귀 검증을 만들 수 있다.
구현 체크리스트
scripts/upsert-jenkins-certified-job.sh에서APPSOK_SCM_URLoverride, HTTP(S) userinfo credential 거부, XML escaping helper,<url>${SCM_URL_XML}</url>적용을 구현한다.test/certified_macos_scripts_test.dart에 dry-run regression test를 추가해 XML escaping과 credential URL 거부를 검증한다.- 계획의 중간 검증과 최종 검증 명령을 실행하고 실제 출력을 review stub에 기록한다.
- CODE_REVIEW-*-G??.md의 구현 에이전트 소유 섹션을 실제 구현 내용과 검증 출력으로 채운다. 이 항목이 완료되기 전에는 구현이 완료된 것이 아니다.
[SECURITY-1] Jenkins SCM URL sanitization and XML escaping
문제
scripts/upsert-jenkins-certified-job.sh:34-35는 git remote URL을 그대로 SCM_URL에 저장한다.
# scripts/upsert-jenkins-certified-job.sh:34-35
# SCM URL extraction
SCM_URL=$(git config --get remote.origin.url 2>/dev/null || git remote get-url origin 2>/dev/null || echo "https://github.com/toki-labs/appsok.git")
scripts/upsert-jenkins-certified-job.sh:51-54는 이 값을 escape 없이 Jenkins XML에 넣는다.
<!-- scripts/upsert-jenkins-certified-job.sh:51-54 -->
<hudson.plugins.git.UserRemoteConfig>
<url>${SCM_URL}</url>
</hudson.plugins.git.UserRemoteConfig>
HTTPS remote가 https://user:token@example.com/org/repo.git 형태이면 dry-run 출력과 job config에 credential이 노출된다. URL에 &, <, >가 있으면 generated XML도 깨질 수 있다.
해결 방법
스크립트에 다음 동작을 추가한다.
SCM_URL="${APPSOK_SCM_URL:-$(git config --get remote.origin.url 2>/dev/null || git remote get-url origin 2>/dev/null || echo "https://github.com/toki-labs/appsok.git")}"
reject_http_scm_userinfo() {
local url="$1"
if [[ "$url" =~ ^https?://[^/]*@ ]]; then
echo "Error: SCM remote URL must be credential-free for Jenkins job XML. Configure a credential-free remote and store credentials in Jenkins." >&2
exit 1
fi
}
xml_escape() {
python3 -c 'import html, sys; print(html.escape(sys.stdin.read(), quote=True), end="")'
}
reject_http_scm_userinfo "$SCM_URL"
SCM_URL_XML="$(printf '%s' "$SCM_URL" | xml_escape)"
XML template의 URL 자리에는 ${SCM_URL_XML}만 사용한다.
<url>${SCM_URL_XML}</url>
SSH scp 형식인 git@github.com:toki-labs/appsok.git은 https?://가 아니므로 거부하지 않는다. ssh://git@github.com/toki-labs/appsok.git도 HTTP(S) credential URL이 아니므로 거부하지 않는다.
수정 파일 및 체크리스트
scripts/upsert-jenkins-certified-job.sh:APPSOK_SCM_URLoverride를 추가한다.scripts/upsert-jenkins-certified-job.sh: HTTP(S) URL authority에@가 있으면 URL 값을 출력하지 않는 에러로 종료한다.scripts/upsert-jenkins-certified-job.sh: XML text escaping helper를 추가하고 Jenkins XML에는 escaped URL만 넣는다.scripts/upsert-jenkins-certified-job.sh: 기존 default URL, dry-run,--applyflow는 유지한다.
테스트 작성
test/certified_macos_scripts_test.dart에 SECURITY-2 테스트를 작성한다. 이 항목 자체에는 별도 test file을 만들지 않는다.
중간 검증
bash -n scripts/upsert-jenkins-certified-job.sh
예상 결과: exit 0.
[SECURITY-2] Dry-run regression tests for Jenkins SCM URL handling
문제
test/certified_macos_scripts_test.dart:182-216의 Jenkins credential 테스트는 SOPS/curl credential 은닉만 확인한다. generated Jenkins XML에 들어가는 SCM URL의 credential/userinfo 누출과 XML escaping은 검증하지 않는다.
// test/certified_macos_scripts_test.dart:182-216
test('jenkins job upsert keeps credentials out of generated config', () {
final script = _readScript('scripts/upsert-jenkins-certified-job.sh');
final setupScript = _readScript('scripts/setup-appsok-ci-secrets.sh');
...
});
해결 방법
Process.run 기반 테스트를 추가한다.
APPSOK_SCM_URL='https://example.com/toki/appsok.git?foo=1&bar=<tag>'와--dry-run을 실행하고, stdout의<url>값이&,<tag>로 escape되었는지 확인한다.APPSOK_SCM_URL='https://user:token@example.com/org/repo.git'와--dry-run을 실행하고, non-zero exit, credential-free 에러 메시지, stdout/stderr에token미포함을 확인한다.- 테스트 이름 예시:
jenkins job upsert escapes SCM URL in dry-run XMLjenkins job upsert rejects HTTP SCM URLs with userinfo
수정 파일 및 체크리스트
test/certified_macos_scripts_test.dart:Process.rundry-run helper를 추가한다.test/certified_macos_scripts_test.dart: XML escaping regression test를 추가한다.test/certified_macos_scripts_test.dart: HTTP(S) userinfo rejection regression test를 추가한다.test/certified_macos_scripts_test.dart: 기존 string expectation 테스트를 새 helper/behavior와 충돌하지 않게 갱신한다.
테스트 작성
작성 필수. bug fix이므로 regression test가 필요하다.
중간 검증
ssh toki@toki-labs.com 'zsh -lc "cd \"$HOME/docker/services/code-server/data/volume/workspace/appsok\" && flutter test test/certified_macos_scripts_test.dart"'
예상 결과: focused test 전체 pass.
수정 파일 요약
| 파일 | 항목 |
|---|---|
scripts/upsert-jenkins-certified-job.sh |
SECURITY-1 |
test/certified_macos_scripts_test.dart |
SECURITY-2 |
최종 검증
bash -n scripts/setup-appsok-ci-secrets.sh scripts/build-certified-macos.sh scripts/upsert-jenkins-certified-job.sh
예상 결과: exit 0.
ssh toki@toki-labs.com 'zsh -lc "cd \"$HOME/docker/services/code-server/data/volume/workspace/appsok\" && flutter test test/certified_macos_scripts_test.dart"'
예상 결과: focused test 전체 pass.
git diff --check
예상 결과: whitespace error 없음.
모든 코드 변경 완료 후 반드시 CODE_REVIEW-*-G??.md의 구현 에이전트 소유 섹션을 채운다. 이 파일 작성이 구현의 마지막 단계다.