No description
  • JavaScript 100%
Find a file
2026-06-19 16:52:44 +02:00
.forgejo/workflows fix: add page pass 2026-06-19 16:52:29 +02:00
fingerprints site-check: flag changed sites for review 2026-06-19 00:20:24 +00:00
sites feat: add epilogue and my domains 2026-06-19 16:31:24 +02:00
to-review site-check: flag changed sites for review 2026-06-19 00:20:24 +00:00
.gitignore feat: better scanning 2026-04-13 15:00:31 +02:00
bun.lock feat: better scanning 2026-04-13 15:00:31 +02:00
check-sites.mjs feat: better scanning 2026-04-13 15:00:31 +02:00
package-lock.json chore: add package lock 2026-03-27 00:17:24 +01:00
package.json feat: better scanning 2026-04-13 15:00:31 +02:00
README.md Update README.md 2026-04-16 11:27:14 +02:00
sites.txt site-check: flag changed sites for review 2026-06-19 00:20:24 +00:00

senden.chat secure-sites

A whitelist of trusted domains. Every day at midnight a bot screenshots each site and compares it to the previous baseline. If a site changes significantly it gets moved to to-review/ for manual inspection.

Structure

sites/         # Whitelisted domains (one empty file per domain)
to-review/     # Domains flagged for visual changes
fingerprints/   # Page fingerprints to detect changes of the page

Contributing

Adding a domain

  1. Fork the repo and create a branch.
  2. Create an empty file in sites/ named after the domain:
    touch sites/example.com
    
    For subdomains, use the full hostname:
    touch sites/app.example.com
    
  3. Open a pull request. The linter will verify your changes are valid.

Removing a domain

Delete the file from sites/ (or to-review/) and open a pull request.

Reviewing a flagged domain

Only senden maintainers are allowed to re-review domains.

This will reset its baseline screenshot on the next bot run.

Rules

  • Site files must be empty. no content inside them.
  • PRs can only add, remove, or move files between sites/ and to-review/. No other modifications are allowed.
  • The linter workflow enforces these rules automatically.