2026-04-13 12:43:37 +08:00
|
|
|
---
|
|
|
|
|
created: 2026-03-16
|
|
|
|
|
modified: 2026-04-11
|
|
|
|
|
tags:
|
|
|
|
|
- inbox
|
|
|
|
|
- security
|
|
|
|
|
- credentials
|
|
|
|
|
status: needs-review
|
|
|
|
|
---
|
|
|
|
|
|
2026-03-23 16:42:49 +08:00
|
|
|
# 2026-03-16
|
|
|
|
|
|
|
|
|
|
## Capture
|
|
|
|
|
<!-- Quick thoughts, links, ideas throughout the day -->
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
curl https://api.githubcopilot.com/models \
|
|
|
|
|
-H "Authorization: Bearer ${GITHUB_API_KEY}" \
|
|
|
|
|
-H "Editor-Version: vscode/1.90.0" \
|
|
|
|
|
-H "Accept: application/json"
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2026-04-13 12:43:37 +08:00
|
|
|
[REDACTED_GITHUB_TOKEN]
|
2026-03-23 16:42:49 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
matrix claw
|
|
|
|
|
|
|
|
|
|
```
|
2026-04-13 12:43:37 +08:00
|
|
|
[REDACTED_MATRIX_TOKEN]
|
2026-03-23 16:42:49 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
curl -sS \
|
2026-04-13 12:43:37 +08:00
|
|
|
-H "Authorization: Bearer [REDACTED_MATRIX_ACCESS_TOKEN]" \
|
2026-03-23 16:42:49 +08:00
|
|
|
"https://synapse.chans.xyz/_matrix/client/v3/account/whoami" | jq
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
curl -sS \
|
2026-04-13 12:43:37 +08:00
|
|
|
-H "Authorization: Bearer [REDACTED_MATRIX_ACCESS_TOKEN]" \
|
2026-03-23 16:42:49 +08:00
|
|
|
"https://synapse.chans.xyz/_matrix/client/v3/account/joined_rooms" | jq
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
curl -sS https://synapse.chans.xyz/_matrix/client/v3/login \
|
|
|
|
|
-H 'Content-Type: application/json' \
|
|
|
|
|
-d '{
|
|
|
|
|
"type": "m.login.password",
|
|
|
|
|
"identifier": {
|
|
|
|
|
"type": "m.id.user",
|
|
|
|
|
"user": "@claw:chans.xyz"
|
|
|
|
|
},
|
2026-04-13 12:43:37 +08:00
|
|
|
"password": "[REDACTED_PASSWORD]",
|
|
|
|
|
"device_id": "[REDACTED_DEVICE_ID]",
|
2026-03-23 16:42:49 +08:00
|
|
|
"initial_device_display_name": "ZeroClaw Bot"
|
|
|
|
|
}' | jq
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Questions
|
|
|
|
|
<!-- What am I curious about today? -->
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
## Insights
|
|
|
|
|
<!-- What did I learn or realize? -->
|
2026-04-13 12:43:37 +08:00
|
|
|
- This note previously contained plaintext credentials and tokens. They were redacted on 2026-04-11.
|
|
|
|
|
- Any exposed credentials captured here should be treated as compromised and rotated.
|
2026-03-23 16:42:49 +08:00
|
|
|
|
|
|
|
|
## Connections
|
|
|
|
|
<!-- Links to other notes or ideas -->
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
## For Tomorrow
|
|
|
|
|
<!-- What needs follow-up? -->
|
2026-04-13 12:43:37 +08:00
|
|
|
- Rotate any GitHub, Matrix, or related credentials that were previously stored here.
|
|
|
|
|
- Move durable command examples into a proper resource note after secrets are removed.
|
2026-03-23 16:42:49 +08:00
|
|
|
|
|
|
|
|
---
|
|
|
|
|
← [[2026-03-15]] | [[2026-03-17]] →
|
|
|
|
|
|
2026-04-13 12:43:37 +08:00
|
|
|
*End of day: Ask Claude Code to review and find connections*
|