-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecurity.html
More file actions
47 lines (42 loc) · 2.38 KB
/
Copy pathsecurity.html
File metadata and controls
47 lines (42 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Security — DeedScout</title>
<meta name="description" content="DeedScout security practices, headers, rate limits, and responsible disclosure." />
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="/assets/deedscout.css" />
</head>
<body class="ds-body">
<main class="ds-main" style="padding-top:48px;max-width:760px;">
<div class="ds-section-head"><p class="ds-section-label">Trust</p><h1>Security & responsible disclosure</h1></div>
<div class="ds-prose">
<p>DeedScout uses Supabase Auth, Stripe for billing, and Netlify Functions for server-side Pro checks. User-owned data (watchlists, alerts, profiles) is protected by Row Level Security in Supabase.</p>
<h2>Security contact</h2>
<p><strong>Email:</strong> <a href="mailto:security@deedscout.app">security@deedscout.app</a> (monitored) · or use <a href="contact.html">Contact</a> with subject “Security”.</p>
<h2>Transport & headers</h2>
<ul>
<li>HSTS, CSP, X-Frame-Options DENY, Referrer-Policy, Permissions-Policy on all pages</li>
<li>Stripe Checkout — card data never touches DeedScout servers</li>
</ul>
<h2>Rate limiting & abuse</h2>
<ul>
<li>Checkout and Pro API endpoints: per-IP rate limits on Netlify Functions</li>
<li>CSV export: client-side throttling on Permit Search and Tax Deeds Pro exports</li>
<li>Public forms: Netlify honeypot fields</li>
</ul>
<h2>Audit logging</h2>
<ul>
<li>Stripe webhooks verified with <code>constructEvent</code> — reject unsigned payloads</li>
<li>Credit spend/refund logged in Supabase <code>credit_ledger</code> with reason codes</li>
<li>Webhook replay: Stripe event IDs should be deduplicated in production (document idempotency before GA)</li>
</ul>
<h2>Responsible disclosure</h2>
<p>Include steps to reproduce and impact. Do not publicly disclose before we acknowledge. We aim to respond within 5 business days.</p>
<p><a href="trust.html">Trust Center</a> · <a href="privacy.html">Privacy Policy</a></p>
</div>
</main>
<script src="/assets/deedscout.js"></script>
</body>
</html>