finwipe 0.2.4 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +160 -232
- package/package.json +3 -3
- package/templates/emails/deletion_request.txt +12 -7
- package/templates/emails/escalation_dpo.txt +15 -4
- package/templates/emails/followup.txt +19 -5
package/README.md
CHANGED
|
@@ -1,131 +1,144 @@
|
|
|
1
|
-
# FinWipe —
|
|
1
|
+
# FinWipe — Stop Digital Lenders from Holding Your Data
|
|
2
2
|
|
|
3
3
|
> **"Your financial data. Your rules."**
|
|
4
4
|
|
|
5
|
-
FinWipe is an open-source CLI tool that helps Indian citizens exercise their **right to erasure** under
|
|
5
|
+
FinWipe is an open-source CLI tool that helps Indian citizens exercise their **right to erasure** under:
|
|
6
|
+
- **RBI Master Direction on Digital Lending** (updated August 2025) — *for fintechs, NBFCs, and digital lenders*
|
|
7
|
+
- **Section 8(6) of the DPDP Act, 2023** — *for all companies*
|
|
6
8
|
|
|
7
9
|
Every request gets a unique **DPR-ID** (e.g., `DPR-2026-000001`) for full auditability. All data stays on **YOUR machine**.
|
|
8
10
|
|
|
9
11
|
---
|
|
10
12
|
|
|
11
|
-
##
|
|
13
|
+
## ⚡ Quick Start
|
|
12
14
|
|
|
13
|
-
**Option 1 — npm (recommended, cross-platform):**
|
|
14
15
|
```bash
|
|
16
|
+
# 1. Install
|
|
15
17
|
npm install -g finwipe
|
|
16
|
-
```
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
brew tap das-rebel/finwipe
|
|
21
|
-
brew install finwipe
|
|
22
|
-
```
|
|
19
|
+
# 2. Set up your profile (name, email, phones, SMTP)
|
|
20
|
+
finwipe init
|
|
23
21
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
# macOS (Apple Silicon / M1-M3)
|
|
27
|
-
curl -fsSL https://github.com/Das-rebel/finwipe/releases/latest/download/finwipe-darwin-arm64 -o finwipe
|
|
22
|
+
# 3. Find your lender
|
|
23
|
+
finwipe list --search KreditBee
|
|
28
24
|
|
|
29
|
-
#
|
|
30
|
-
|
|
25
|
+
# 4. Create deletion request
|
|
26
|
+
finwipe new --nbfc-id kreditbee
|
|
31
27
|
|
|
32
|
-
#
|
|
33
|
-
|
|
28
|
+
# 5. Send
|
|
29
|
+
finwipe send --dry-run # preview first
|
|
30
|
+
finwipe send # actually send
|
|
34
31
|
|
|
35
|
-
#
|
|
36
|
-
|
|
32
|
+
# 6. Track
|
|
33
|
+
finwipe track --all
|
|
34
|
+
```
|
|
37
35
|
|
|
38
|
-
|
|
39
|
-
curl -fsSL https://github.com/Das-rebel/finwipe/releases/latest/download/finwipe-windows-amd64.exe -o finwipe.exe
|
|
36
|
+
---
|
|
40
37
|
|
|
41
|
-
|
|
38
|
+
## 🎯 Use Cases
|
|
42
39
|
|
|
43
|
-
|
|
44
|
-
```
|
|
40
|
+
### For Digital Lending (DLG) — Recommended First
|
|
45
41
|
|
|
46
|
-
**
|
|
47
|
-
```bash
|
|
48
|
-
git clone https://github.com/das-rebel/finwipe
|
|
49
|
-
cd finwipe && go build -o finwipe ./cmd/finwipe
|
|
50
|
-
```
|
|
42
|
+
If you took a **loan, BNPL, or credit from a fintech app** (KreditBee, CRED, Slice, PhonePe, etc.):
|
|
51
43
|
|
|
52
|
-
Verify it works:
|
|
53
44
|
```bash
|
|
54
|
-
|
|
45
|
+
# Find your lender
|
|
46
|
+
finwipe list --category fintech
|
|
47
|
+
|
|
48
|
+
# Send deletion request
|
|
49
|
+
finwipe new --nbfc-id kreditbee
|
|
50
|
+
finwipe send
|
|
51
|
+
|
|
52
|
+
# Follow up after 3 days
|
|
53
|
+
finwipe send --request-id DPR-2026-XXXXXX
|
|
55
54
|
```
|
|
56
55
|
|
|
57
|
-
|
|
56
|
+
**Legal basis:** RBI Master Direction on Digital Lending (updated August 2025) — Para 10.2, 11.1
|
|
57
|
+
|
|
58
|
+
### For DPDP Act (General)
|
|
58
59
|
|
|
59
|
-
|
|
60
|
+
For any company holding your data under the general data protection law:
|
|
60
61
|
|
|
61
62
|
```bash
|
|
62
|
-
|
|
63
|
-
finwipe
|
|
63
|
+
finwipe new --nbfc-id some-company
|
|
64
|
+
finwipe send
|
|
65
|
+
```
|
|
64
66
|
|
|
65
|
-
|
|
66
|
-
finwipe list --category fintech
|
|
67
|
+
**Legal basis:** Section 8(6), DPDP Act 2023
|
|
67
68
|
|
|
68
|
-
|
|
69
|
-
finwipe new --nbfc-id bajaj-finserv
|
|
69
|
+
### For CIBIL/Bureau Data
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
finwipe send --dry-run # preview first
|
|
73
|
-
finwipe send # actually send emails
|
|
71
|
+
Stop credit bureaus from sharing your data:
|
|
74
72
|
|
|
75
|
-
|
|
76
|
-
finwipe
|
|
73
|
+
```bash
|
|
74
|
+
finwipe discover-from-cibil --file your_cibil_report.pdf --auto
|
|
75
|
+
finwipe send
|
|
77
76
|
```
|
|
78
77
|
|
|
78
|
+
See [CIBIL Guide](docs/CIBIL_GUIDE.md) for full process.
|
|
79
|
+
|
|
79
80
|
---
|
|
80
81
|
|
|
81
82
|
## 📋 Core Commands
|
|
82
83
|
|
|
84
|
+
| Command | Description |
|
|
85
|
+
|---------|-------------|
|
|
86
|
+
| `finwipe init` | Set up profile (name, email, phones, SMTP) |
|
|
87
|
+
| `finwipe list` | Browse 91 registered entities |
|
|
88
|
+
| `finwipe new` | Create deletion request → get DPR-ID |
|
|
89
|
+
| `finwipe send` | Send emails |
|
|
90
|
+
| `finwipe track` | Monitor lifecycle |
|
|
91
|
+
| `finwipe ack` | Record acknowledgment |
|
|
92
|
+
| `finwipe escalate` | Escalate ignored requests |
|
|
93
|
+
| `finwipe report` | Compliance dashboard |
|
|
94
|
+
|
|
83
95
|
### `finwipe init`
|
|
84
|
-
|
|
96
|
+
|
|
85
97
|
```bash
|
|
86
98
|
finwipe init
|
|
87
|
-
# Interactive prompts
|
|
88
|
-
# Full name
|
|
89
|
-
#
|
|
99
|
+
# Interactive prompts:
|
|
100
|
+
# Full name
|
|
101
|
+
# Email (for sending/receiving)
|
|
102
|
+
# Phone(s) — include both numbers
|
|
103
|
+
# Address
|
|
104
|
+
# SMTP host, port, username, app password
|
|
90
105
|
```
|
|
91
106
|
|
|
92
107
|
### `finwipe list`
|
|
93
|
-
|
|
108
|
+
|
|
94
109
|
```bash
|
|
95
110
|
finwipe list # all 91
|
|
96
111
|
finwipe list --category fintech # 59 fintechs
|
|
97
|
-
finwipe list --category
|
|
98
|
-
finwipe list --category
|
|
99
|
-
finwipe list --search HDFC
|
|
100
|
-
finwipe list --json
|
|
112
|
+
finwipe list --category nbfc # 18 NBFCs
|
|
113
|
+
finwipe list --category bank # 12 banks
|
|
114
|
+
finwipe list --search HDFC # by name
|
|
115
|
+
finwipe list --json # JSON output
|
|
101
116
|
```
|
|
102
117
|
|
|
103
118
|
### `finwipe new`
|
|
104
|
-
|
|
119
|
+
|
|
105
120
|
```bash
|
|
106
121
|
finwipe new --nbfc-id bajaj-finserv
|
|
107
122
|
finwipe new --nbfc-id tata-capital --categories marketing,third_party
|
|
108
123
|
```
|
|
109
124
|
|
|
110
|
-
**Deletion categories:** `marketing` · `third_party` · `behavioral` · `app_usage` · `
|
|
125
|
+
**Deletion categories:** `marketing` · `third_party` · `behavioral` · `app_usage` · `loan_profile` · `all_non_essential`
|
|
111
126
|
|
|
112
127
|
### `finwipe send`
|
|
113
|
-
|
|
128
|
+
|
|
114
129
|
```bash
|
|
115
130
|
finwipe send --dry-run # preview (no emails sent)
|
|
116
131
|
finwipe send # send all pending
|
|
117
132
|
finwipe send --request-id DPR-2026-000001
|
|
118
|
-
finwipe send --rate-limit 2000
|
|
119
|
-
finwipe send --channel post # generate PDF letters
|
|
133
|
+
finwipe send --rate-limit 2000 # 2s between emails
|
|
120
134
|
```
|
|
121
135
|
|
|
122
136
|
### `finwipe track`
|
|
123
|
-
|
|
137
|
+
|
|
124
138
|
```bash
|
|
125
139
|
finwipe track --request-id DPR-2026-000001
|
|
126
140
|
finwipe track --all # all active
|
|
127
141
|
finwipe track --overdue # past deadline
|
|
128
|
-
finwipe track --awaiting-ack # no response yet
|
|
129
142
|
```
|
|
130
143
|
|
|
131
144
|
**Lifecycle:**
|
|
@@ -134,183 +147,88 @@ INITIATED → DISPATCHED → ACK_RECEIVED → RESPONSE_OK → CLOSED
|
|
|
134
147
|
↓ ↓
|
|
135
148
|
AWAITING_ACK ESCALATED
|
|
136
149
|
↓ ↓
|
|
137
|
-
DELIVERY_FAILED
|
|
138
|
-
```
|
|
139
|
-
|
|
140
|
-
### `finwipe ack`
|
|
141
|
-
Record an NBFC's acknowledgment.
|
|
142
|
-
```bash
|
|
143
|
-
finwipe ack --request-id DPR-2026-000001
|
|
144
|
-
finwipe ack --request-id DPR-2026-000001 --reference ABC123XYZ
|
|
150
|
+
DELIVERY_FAILED RBI OM ~ BPDT ~ Consumer Forum
|
|
145
151
|
```
|
|
146
152
|
|
|
147
153
|
### `finwipe escalate`
|
|
148
|
-
Escalate ignored requests up the chain.
|
|
149
|
-
```bash
|
|
150
|
-
finwipe escalate --request-id DPR-2026-000001 --to dpo # L1: Data Protection Officer
|
|
151
|
-
finwipe escalate --request-id DPR-2026-000001 --to dpd_board # L2: DPDP Board §27(3)
|
|
152
|
-
finwipe escalate --request-id DPR-2026-000001 --to rbi_ombudsman # L3: RBI
|
|
153
|
-
finwipe escalate --request-id DPR-2026-000001 --to consumer_forum # L3: Consumer Forum
|
|
154
|
-
```
|
|
155
154
|
|
|
156
|
-
### `finwipe close`
|
|
157
|
-
Close a request with an outcome.
|
|
158
155
|
```bash
|
|
159
|
-
finwipe
|
|
160
|
-
finwipe
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
**Outcomes:** `deleted` · `acknowledged_not_deleted` · `partial` · `rejected` · `exemption_claimed` · `no_response`
|
|
164
|
-
|
|
165
|
-
### `finwipe report`
|
|
166
|
-
Dashboard with compliance metrics.
|
|
167
|
-
```bash
|
|
168
|
-
finwipe report
|
|
169
|
-
finwipe report --days 30 --format json
|
|
156
|
+
finwipe escalate --request-id DPR-2026-000001 --to dpo # L1: DPO
|
|
157
|
+
finwipe escalate --request-id DPR-2026-000001 --to dpd_board # L2: DPDP Board
|
|
158
|
+
finwipe escalate --request-id DPR-2026-000001 --to rbi_ombudsman # L3: RBI
|
|
159
|
+
finwipe escalate --request-id DPR-2026-000001 --to consumer_forum # L4: Consumer Forum
|
|
170
160
|
```
|
|
171
161
|
|
|
172
162
|
---
|
|
173
163
|
|
|
174
|
-
## 🔍 Discovery
|
|
175
|
-
|
|
176
|
-
Find out **who holds your data** before sending requests.
|
|
164
|
+
## 🔍 Discovery — Find Who Has Your Data
|
|
177
165
|
|
|
178
|
-
###
|
|
179
|
-
Parse a CIBIL report PDF → auto-create requests for every institution that queried your credit.
|
|
166
|
+
### From CIBIL Report
|
|
180
167
|
```bash
|
|
181
168
|
finwipe discover-from-cibil --file your_cibil_report.pdf --auto
|
|
182
169
|
```
|
|
183
170
|
|
|
184
|
-
###
|
|
185
|
-
All 4 bureaus: CIBIL, Experian, Equifax, CRIF HighMark.
|
|
186
|
-
```bash
|
|
187
|
-
finwipe discover-from-bureau --file Experian_Report.pdf --auto
|
|
188
|
-
```
|
|
189
|
-
|
|
190
|
-
### `finwipe discover-from-bank-statement`
|
|
191
|
-
Extract FI references from bank statement PDFs (EMI deductions, NACH mandates).
|
|
171
|
+
### From Bank Statement
|
|
192
172
|
```bash
|
|
193
173
|
finwipe discover-from-statement --file statement.pdf
|
|
194
174
|
finwipe discover-from-statement --directory ./statements/ --auto
|
|
195
175
|
```
|
|
196
176
|
|
|
197
|
-
###
|
|
198
|
-
Parse Gmail Takeout exports.
|
|
177
|
+
### From Gmail
|
|
199
178
|
```bash
|
|
200
179
|
finwipe discover-from-email --file gmail_export.zip --auto
|
|
201
180
|
```
|
|
202
181
|
|
|
203
|
-
###
|
|
204
|
-
Extract FI contacts from WhatsApp Business chat exports.
|
|
182
|
+
### From WhatsApp
|
|
205
183
|
```bash
|
|
206
184
|
finwipe discover-from-whatsapp --path ./whatsapp_chat.txt
|
|
207
185
|
```
|
|
208
186
|
|
|
209
|
-
### `finwipe discover-from-aa`
|
|
210
|
-
Discover FIs via Account Aggregator apps (NADL, CAMS, SAafe, Finvu).
|
|
211
|
-
```bash
|
|
212
|
-
finwipe discover-from-aa --provider nadl
|
|
213
|
-
```
|
|
214
|
-
|
|
215
|
-
---
|
|
216
|
-
|
|
217
|
-
## ⚖️ Enforcement Commands
|
|
218
|
-
|
|
219
|
-
### `finwipe portability`
|
|
220
|
-
Request **all data** an entity holds about you (§6(9), DPDP Act). Company must respond in 72 hours.
|
|
221
|
-
```bash
|
|
222
|
-
finwipe portability --nbfc-id bajaj-finserv
|
|
223
|
-
finwipe portability --nbfc-id tata-capital --send
|
|
224
|
-
```
|
|
225
|
-
|
|
226
|
-
### `finwipe verify`
|
|
227
|
-
Confirm an NBFC actually deleted your data.
|
|
228
|
-
```bash
|
|
229
|
-
finwipe verify --request-id DPR-2026-000001 --method certificate
|
|
230
|
-
```
|
|
231
|
-
**Methods:** `email` · `certificate` · `login`
|
|
232
|
-
|
|
233
|
-
### `finwipe mass-request`
|
|
234
|
-
Send to ALL entities in a category at once.
|
|
235
|
-
```bash
|
|
236
|
-
finwipe mass-request --category fintech --dry-run
|
|
237
|
-
finwipe mass-request --category bank --exclude hdfc-bank,icici-bank
|
|
238
|
-
```
|
|
239
|
-
⚠️ You'll receive ~90 acknowledgment emails.
|
|
240
|
-
|
|
241
|
-
### `finwipe compliance`
|
|
242
|
-
Community compliance rates + shame list.
|
|
243
|
-
```bash
|
|
244
|
-
finwipe compliance
|
|
245
|
-
finwipe compliance --shame # worst offenders
|
|
246
|
-
```
|
|
247
|
-
|
|
248
187
|
---
|
|
249
188
|
|
|
250
189
|
## 🤖 Automation
|
|
251
190
|
|
|
252
|
-
###
|
|
253
|
-
Daily automation: follow-ups, deadline checks, auto-escalation.
|
|
254
|
-
```bash
|
|
255
|
-
finwipe cron --dry-run # preview
|
|
256
|
-
finwipe cron # full automation
|
|
257
|
-
```
|
|
258
|
-
**Schedule:** Day 3 → follow-up · Day 7 → DPO escalation · Day 30 → DPDP Board
|
|
259
|
-
|
|
260
|
-
### `finwipe wizard`
|
|
261
|
-
Interactive guided flow for first-time users.
|
|
191
|
+
### Daily Cron
|
|
262
192
|
```bash
|
|
263
|
-
finwipe
|
|
193
|
+
finwipe cron --dry-run # preview
|
|
194
|
+
finwipe cron # runs: follow-ups, deadline checks, auto-escalation
|
|
264
195
|
```
|
|
265
196
|
|
|
266
|
-
|
|
267
|
-
Quick consent-withdrawal wizard (no `finwipe init` needed).
|
|
268
|
-
```bash
|
|
269
|
-
finwipe ask
|
|
270
|
-
```
|
|
197
|
+
**Schedule:** Day 3 → follow-up · Day 7 → DPO escalation · Day 30 → DPDP Board
|
|
271
198
|
|
|
272
199
|
### Monthly GitHub Actions
|
|
273
|
-
Fork the repo, add secrets
|
|
200
|
+
Fork the repo, add secrets, and the workflow runs monthly.
|
|
274
201
|
|
|
275
202
|
---
|
|
276
203
|
|
|
277
|
-
##
|
|
204
|
+
## 📖 Documentation
|
|
278
205
|
|
|
279
|
-
|
|
|
280
|
-
|
|
281
|
-
|
|
|
282
|
-
|
|
|
283
|
-
|
|
|
284
|
-
|
|
|
285
|
-
| `finwipe update-registry` | Update NBFC registry from awesome-fintech-india |
|
|
286
|
-
| `finwipe setup-forward` | Set up FinWipe cloud inbox for passive discovery |
|
|
287
|
-
| `finwipe sync` | Sync discoveries from FinWipe cloud |
|
|
288
|
-
| `finwipe cloud-status` | Check cloud connectivity |
|
|
206
|
+
| Guide | When to Use |
|
|
207
|
+
|-------|-------------|
|
|
208
|
+
| **[DLG Guide](docs/DLG_GUIDE.md)** | **START HERE** — Digital lending data deletion |
|
|
209
|
+
| **[Gmail Setup](docs/GMAIL_SETUP.md)** | SMTP setup, receiving replies |
|
|
210
|
+
| **[Regulatory Framework](docs/REGULATORY_FRAMEWORK.md)** | All laws and sections |
|
|
211
|
+
| **[CIBIL Guide](docs/CIBIL_GUIDE.md)** | Credit bureau disputes |
|
|
289
212
|
|
|
290
213
|
---
|
|
291
214
|
|
|
292
|
-
##
|
|
215
|
+
## ⚖️ Legal Basis
|
|
293
216
|
|
|
294
|
-
|
|
295
|
-
|--------|------:|
|
|
296
|
-
| Version | 0.1.4 |
|
|
297
|
-
| Registry | 91 entities (12 banks · 18 NBFCs · 59 fintechs · 2 HFCs) |
|
|
298
|
-
| Legal basis | DPDP Act 2023 + RBI DLG |
|
|
299
|
-
| npm | [finwipe](https://www.npmjs.com/package/finwipe) |
|
|
300
|
-
| Homebrew | [das-rebel/finwipe](https://github.com/Das-rebel/homebrew-finwipe) |
|
|
217
|
+
### For Digital Lenders (Use First)
|
|
301
218
|
|
|
302
|
-
|
|
219
|
+
| Law | Section | What It Says |
|
|
220
|
+
|-----|---------|--------------|
|
|
221
|
+
| **RBI DLG 2025** | Para 10.2 | "Data shall be deleted once purpose is over" |
|
|
222
|
+
| **RBI DLG 2025** | Para 11.1 | "No data sharing without consent after closure" |
|
|
303
223
|
|
|
304
|
-
|
|
224
|
+
### For All Companies
|
|
305
225
|
|
|
306
226
|
| Law | Section | Right |
|
|
307
227
|
|-----|---------|-------|
|
|
308
|
-
| DPDP Act 2023 | §8(6) | Right to Erasure |
|
|
309
|
-
| DPDP Act 2023 | §6(9) | Right to Data Portability |
|
|
310
|
-
| DPDP
|
|
311
|
-
| DPDP Rules 2025 | Rule 8(
|
|
312
|
-
| DPDP Rules 2025 | Rule 8(2) | Deletion within 30 days |
|
|
313
|
-
| RBI DLG 2022 | Para 10.2, 11.1 | Data deletion in lending |
|
|
228
|
+
| **DPDP Act 2023** | §8(6) | Right to Erasure |
|
|
229
|
+
| **DPDP Act 2023** | §6(9) | Right to Data Portability |
|
|
230
|
+
| **DPDP Rules 2025** | Rule 8(1) | 48-hour acknowledgment |
|
|
231
|
+
| **DPDP Rules 2025** | Rule 8(2) | 30-day deletion |
|
|
314
232
|
|
|
315
233
|
---
|
|
316
234
|
|
|
@@ -321,7 +239,6 @@ Fork the repo, add secrets (`SMTP_HOST`, `SMTP_PORT`, `SMTP_USERNAME`, `SMTP_PAS
|
|
|
321
239
|
✓ Third-party shared data
|
|
322
240
|
✓ Behavioral and usage data
|
|
323
241
|
✓ Pre-approved loan offer profiles
|
|
324
|
-
✓ Call recordings and service logs
|
|
325
242
|
✓ App activity and preferences
|
|
326
243
|
```
|
|
327
244
|
|
|
@@ -331,68 +248,79 @@ Fork the repo, add secrets (`SMTP_HOST`, `SMTP_PORT`, `SMTP_USERNAME`, `SMTP_PAS
|
|
|
331
248
|
✗ KYC documents (PMLA: 10 years post-closure)
|
|
332
249
|
✗ Transaction records (RBI: 5-10 years)
|
|
333
250
|
✗ Active loan account data
|
|
334
|
-
✗ CIBIL's own records (separate
|
|
251
|
+
✗ CIBIL's own records (use separate process)
|
|
335
252
|
```
|
|
336
253
|
|
|
337
254
|
---
|
|
338
255
|
|
|
339
|
-
##
|
|
256
|
+
## 📊 Registry
|
|
340
257
|
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
└── evidence/ # Screenshots, acknowledgments
|
|
349
|
-
```
|
|
258
|
+
| Category | Count |
|
|
259
|
+
|----------|------:|
|
|
260
|
+
| Fintechs | 59 |
|
|
261
|
+
| NBFCs | 18 |
|
|
262
|
+
| Banks | 12 |
|
|
263
|
+
| HFCs | 2 |
|
|
264
|
+
| **Total** | **91** |
|
|
350
265
|
|
|
351
266
|
---
|
|
352
267
|
|
|
353
|
-
##
|
|
268
|
+
## 💻 Installation
|
|
354
269
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
- **Viper** — configuration
|
|
270
|
+
### npm (Recommended)
|
|
271
|
+
```bash
|
|
272
|
+
npm install -g finwipe
|
|
273
|
+
```
|
|
360
274
|
|
|
361
|
-
|
|
275
|
+
### Homebrew
|
|
276
|
+
```bash
|
|
277
|
+
brew tap das-rebel/finwipe
|
|
278
|
+
brew install finwipe
|
|
279
|
+
```
|
|
362
280
|
|
|
363
|
-
|
|
281
|
+
### Direct Binary
|
|
282
|
+
```bash
|
|
283
|
+
# macOS ARM64 (M1-M3)
|
|
284
|
+
curl -fsSL https://github.com/Das-rebel/finwipe/releases/latest/download/finwipe-darwin-arm64 -o finwipe
|
|
364
285
|
|
|
365
|
-
|
|
366
|
-
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
-
|
|
286
|
+
# macOS Intel
|
|
287
|
+
curl -fsSL https://github.com/Das-rebel/finwipe/releases/latest/download/finwipe-darwin-amd64 -o finwipe
|
|
288
|
+
|
|
289
|
+
# Linux
|
|
290
|
+
curl -fsSL https://github.com/Das-rebel/finwipe/releases/latest/download/finwipe-linux-amd64 -o finwipe
|
|
291
|
+
|
|
292
|
+
chmod +x finwipe && sudo mv finwipe /usr/local/bin/
|
|
293
|
+
```
|
|
294
|
+
|
|
295
|
+
### Build from Source
|
|
296
|
+
```bash
|
|
297
|
+
git clone https://github.com/das-rebel/finwipe
|
|
298
|
+
cd finwipe && go build -o finwipe ./cmd/finwipe
|
|
299
|
+
```
|
|
370
300
|
|
|
371
301
|
---
|
|
372
302
|
|
|
373
|
-
##
|
|
303
|
+
## 📁 Data Location
|
|
374
304
|
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
| **Source** | `git clone https://github.com/das-rebel/finwipe` |
|
|
305
|
+
All data stays local:
|
|
306
|
+
```
|
|
307
|
+
~/.finwipe/
|
|
308
|
+
├── config.yaml # Profile + SMTP
|
|
309
|
+
├── history.db # SQLite — full audit trail
|
|
310
|
+
├── nbfcs.yaml # Entity registry
|
|
311
|
+
├── letters/ # Generated PDFs
|
|
312
|
+
└── evidence/ # Screenshots, acknowledgments
|
|
313
|
+
```
|
|
385
314
|
|
|
386
315
|
---
|
|
387
316
|
|
|
388
|
-
##
|
|
317
|
+
## 🤝 Contributing
|
|
389
318
|
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
| **[CONTRIBUTING.md](CONTRIBUTING.md)** | How to contribute, add new NBFCs, submit pull requests |
|
|
319
|
+
PRs welcome for:
|
|
320
|
+
- New NBFCs/fintechs in `data/nbfcs.yaml`
|
|
321
|
+
- Email/letter templates in `templates/`
|
|
322
|
+
- Better discovery methods
|
|
323
|
+
- CIC dispute form improvements
|
|
396
324
|
|
|
397
325
|
---
|
|
398
326
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "finwipe",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "DIY Financial Data Deletion tool for India under DPDP Act 2023.
|
|
3
|
+
"version": "0.2.6",
|
|
4
|
+
"description": "DIY Financial Data Deletion tool for India. Exercise your right to erasure under RBI Digital Lending Guidelines and DPDP Act 2023. Delete data held by NBFCs, fintechs, banks, and digital lenders.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"finwipe": "./finwipe"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"nbfc",
|
|
22
22
|
"dpdp-board"
|
|
23
23
|
],
|
|
24
|
-
"author": "
|
|
24
|
+
"author": "FinWipe Community <hello@finwipe.in>",
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
Subject:
|
|
1
|
+
Subject: Data Deletion Request — RBI Digital Lending Guidelines — {{.NBFCName}} — {{.RequestID}}
|
|
2
2
|
|
|
3
3
|
To,
|
|
4
|
-
The Grievance Officer /
|
|
4
|
+
The Grievance Officer / Nodal Officer
|
|
5
5
|
{{.NBFCName}}
|
|
6
6
|
{{.NBFCCategory}}
|
|
7
7
|
|
|
8
|
-
Subject:
|
|
8
|
+
Subject: Data Deletion Request under RBI Master Direction on Digital Lending — {{.NBFCName}}
|
|
9
9
|
|
|
10
10
|
Dear Sir/Madam,
|
|
11
11
|
|
|
12
|
-
I, {{.FullName}}, residing at {{.Address}}, am writing to exercise my right to erasure of personal data
|
|
12
|
+
I, {{.FullName}}, residing at {{.Address}}, am writing to exercise my right to erasure of personal data under **RBI Master Direction on Digital Lending (updated August 2025)**.
|
|
13
13
|
|
|
14
14
|
My details:
|
|
15
15
|
- Name: {{.FullName}}
|
|
@@ -23,14 +23,18 @@ Specifically, I request deletion of:
|
|
|
23
23
|
{{range .Categories}}- {{.}}
|
|
24
24
|
{{end}}
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
As per **RBI Master Direction on Digital Lending**, you are required to complete the deletion within 7 days of receiving this request and provide written confirmation.
|
|
27
27
|
|
|
28
|
-
Please confirm receipt of this request
|
|
28
|
+
Please confirm receipt of this request and proceed with erasure where applicable.
|
|
29
29
|
|
|
30
|
-
If you fail to comply with this request within the stipulated timeframe, I reserve the right to escalate this matter to
|
|
30
|
+
If you fail to comply with this request within the stipulated timeframe, I reserve the right to escalate this matter to:
|
|
31
|
+
1. Your Data Protection Officer
|
|
32
|
+
2. RBI Ombudsman
|
|
33
|
+
3. Consumer Forum
|
|
31
34
|
|
|
32
35
|
Please direct all future correspondence regarding this matter to:
|
|
33
36
|
- Email: {{.Email}}
|
|
37
|
+
- Phone: {{.Phone}}
|
|
34
38
|
- Address: {{.Address}}
|
|
35
39
|
|
|
36
40
|
Yours faithfully,
|
|
@@ -41,3 +45,4 @@ Yours faithfully,
|
|
|
41
45
|
---
|
|
42
46
|
Request ID: {{.RequestID}}
|
|
43
47
|
Date: {{.Date}}
|
|
48
|
+
Legal Basis: RBI Master Direction on Digital Lending (updated August 2025)
|
|
@@ -5,19 +5,30 @@ To: The Data Protection Officer
|
|
|
5
5
|
|
|
6
6
|
Dear DPO,
|
|
7
7
|
|
|
8
|
-
I am escalating my data deletion request (Reference: {{.RequestID}}) as I have not received any acknowledgment or response from {{.NBFCName}} despite
|
|
8
|
+
I am escalating my data deletion request (Reference: {{.RequestID}}) as I have not received any acknowledgment or response from {{.NBFCName}} despite follow-ups.
|
|
9
|
+
|
|
10
|
+
This request is made under **RBI Master Direction on Digital Lending (updated August 2025)** which mandates data deletion compliance.
|
|
9
11
|
|
|
10
12
|
Request Details:
|
|
11
13
|
- Request ID: {{.RequestID}}
|
|
12
14
|
- Original Request Date: {{.RequestDate}}
|
|
13
15
|
- Categories Requested for Deletion: {{range .Categories}} {{.}} {{end}}
|
|
14
|
-
- Nature of Non-Compliance: Failure to acknowledge and erase as
|
|
16
|
+
- Nature of Non-Compliance: Failure to acknowledge and erase as per RBI DLG
|
|
17
|
+
|
|
18
|
+
I request your immediate intervention to ensure compliance with RBI Master Direction on Digital Lending.
|
|
15
19
|
|
|
16
|
-
I
|
|
20
|
+
I reserve the right to escalate to RBI Ombudsman and Consumer Forum if this matter is not resolved within 7 days.
|
|
17
21
|
|
|
18
|
-
|
|
22
|
+
Contact:
|
|
23
|
+
- Email: {{.Email}}
|
|
24
|
+
- Phone: {{.Phone}}
|
|
19
25
|
|
|
20
26
|
Yours faithfully,
|
|
21
27
|
{{.FullName}}
|
|
22
28
|
{{.Email}}
|
|
23
29
|
{{.Phone}}
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
Request ID: {{.RequestID}}
|
|
33
|
+
Original Request Date: {{.RequestDate}}
|
|
34
|
+
Legal Basis: RBI Master Direction on Digital Lending (updated August 2025)
|
|
@@ -1,19 +1,33 @@
|
|
|
1
|
-
Subject: Follow-up:
|
|
1
|
+
Subject: Follow-up: Data Deletion Request — RBI Digital Lending Guidelines — {{.NBFCName}} — {{.RequestID}}
|
|
2
2
|
|
|
3
|
-
Dear Grievance Officer /
|
|
3
|
+
Dear Grievance Officer / Nodal Officer,
|
|
4
4
|
|
|
5
|
-
I am writing to follow up on my earlier request (Reference: {{.RequestID}}) dated {{.RequestDate}}
|
|
5
|
+
I am writing to follow up on my earlier data deletion request (Reference: {{.RequestID}}) dated {{.RequestDate}} under **RBI Master Direction on Digital Lending**.
|
|
6
6
|
|
|
7
7
|
As of today, I have not received:
|
|
8
8
|
1. An acknowledgment of my deletion request, or
|
|
9
9
|
2. Confirmation of data erasure
|
|
10
10
|
|
|
11
|
-
This is a
|
|
11
|
+
This is a follow-up reminder. If I do not receive a response within 7 days, I will escalate this matter to the Data Protection Officer and subsequently to RBI Ombudsman.
|
|
12
12
|
|
|
13
13
|
My original request reference: {{.RequestID}}
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
As per **RBI Master Direction on Digital Lending (updated August 2025)**, you are required to acknowledge deletion requests within 48 hours and complete deletion within 7 days.
|
|
16
|
+
|
|
17
|
+
Please treat this as urgent and provide:
|
|
18
|
+
1. Receipt acknowledgment
|
|
19
|
+
2. Confirmation of data deletion or timeline
|
|
20
|
+
|
|
21
|
+
Contact:
|
|
22
|
+
- Email: {{.Email}}
|
|
23
|
+
- Phone: {{.Phone}}
|
|
16
24
|
|
|
17
25
|
Yours faithfully,
|
|
18
26
|
{{.FullName}}
|
|
19
27
|
{{.Email}}
|
|
28
|
+
{{.Phone}}
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
Request ID: {{.RequestID}}
|
|
32
|
+
Original Request Date: {{.RequestDate}}
|
|
33
|
+
Legal Basis: RBI Master Direction on Digital Lending (updated August 2025)
|