Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CodeQL Security Analysis

on:
push:
branches: [main]
pull_request:

permissions:
actions: read
contents: read
security-events: write

jobs:
analyze:
name: Analyze JavaScript and TypeScript
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
Comment thread
coderabbitai[bot] marked this conversation as resolved.
with:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: javascript-typescript
build-mode: none

- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:javascript-typescript"
7 changes: 0 additions & 7 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,4 @@ Once a report is received through the GitHub Security Advisory form, we commit t

Maintainers: Please ensure that **GitHub Security Advisories** are enabled for this repository to allow researchers to submit reports privately.

## Logging and Secret Redaction

Server logs are configured to redact Stellar secret keys to prevent accidental leakage. The backend uses `pino` with the following protections:

- Structured field redaction for paths: `*.secretKey`, `*.privateKey`, `*.seed`.
- Regex-based redaction for any string matching `^S[0-9A-Z]{55}$` (Stellar secret seed format).

If you discover logs containing secret material, please follow the private reporting process above.