Skip to content

Security: eliekh05/Droidify

SECURITY.md

πŸ” Security

Droidify is a read-only web application. It fetches public data from third-party sources, renders HTML pages, and stores a minimal amount of data for people who choose to sign in. No payments. No file uploads. No private data beyond a GitHub username and a watchlist.


🎯 What we want to hear about

  • FastAPI route vulnerabilities β€” injection, path traversal, SSRF
  • Auth or session issues β€” login bypass, accessing another user's watchlist
  • Data exposure β€” any user data visible to someone who should not see it
  • SSRF in scrapers β€” a scraper being manipulated into fetching internal addresses
  • Dependency CVEs with a realistic exploit path on this specific stack

🚫 What is out of scope

  • Inaccurate data from upstream sources β€” wrong ROM version is a data issue, not a security vulnerability
  • Content of download links hosted by third parties β€” we link to them, we do not control them
  • Social engineering scenarios
  • Generic observations with no demonstrated impact

πŸ“¬ How to report

Open a GitHub issue. If the details should not be public yet, describe the category without the full exploit and we will follow up privately.

Tell us:

  1. What the vulnerability is
  2. How to reproduce it
  3. What an attacker could actually do with it

Do not disclose publicly before a fix is deployed. We will move as fast as we can.

No bug bounty. We will credit you in the commit if you want.


πŸ—„οΈ What we store

Never signed in β€” nothing. No analytics. No cookies. No fingerprinting. No tracking. Not even a page view counter.

Signed in with GitHub:

  • Your GitHub username, avatar URL, and numeric ID
  • Your watchlist β€” up to 20 device codenames
  • One signed session cookie expiring after 30 days

The session cookie is httponly (JavaScript cannot read it), samesite=lax (cannot be sent cross-site), and signed server-side (cannot be forged).

We do not store passwords, email addresses, IP addresses, location data, or any record of what pages you visited or when.

There aren't any published security advisories