45. Security
Security is not something startups earn the right to care about later. A tiny company can still leak customer data, lose production access, expose secrets, break payments, lose source code, or fail an enterprise security review. The right early security posture is not heavyweight. It is basic, consistent, and owned.
This is founder guidance, not a formal security audit or legal advice. Use qualified security and legal professionals for sensitive systems, regulated products, enterprise customers, payments, health, fintech, children, HR data, cross-border data, or major incidents.
The core security question is: what must be true so customers can trust us with their data, money, work, or identity?
Security is not only a technical topic. It affects sales, hiring, vendor selection, product design, support, contracts, compliance, fundraising, and reputation. In a startup, the founder must make security someone specific’s job before it becomes everyone’s emergency.
Startup security basics
Section titled “Startup security basics”Authentication
Section titled “Authentication”Use reliable authentication. Avoid rolling your own password storage, session logic, or account recovery unless the team truly knows what it is doing. Support strong passwords or passwordless flows, rate limits, secure reset, and multi-factor authentication where risk justifies it.
For internal tools and company accounts, enable two-factor authentication on email, GitHub, cloud, domain registrar, payment systems, analytics, customer support, and password manager accounts. One compromised founder email can become a company incident.
Authorization
Section titled “Authorization”Authentication asks who the user is. Authorization asks what they can access. Many serious bugs are authorization bugs: user A can view user B’s data, employee can access admin actions, old team member still has access, or an API checks UI permissions but not server permissions.
Test permissions directly.
In B2B SaaS, test roles and tenant boundaries carefully. In marketplaces, test access across buyers, sellers, operators, and admins. In consumer products, test account recovery, private content, blocked users, and deleted accounts. In AI products, test whether one customer’s documents can accidentally influence another customer’s output.
Encryption
Section titled “Encryption”Use HTTPS everywhere. Encrypt sensitive data at rest where appropriate. Understand how your database, backups, object storage, logs, and third-party tools handle sensitive data. Do not put secrets or private data in URLs, analytics events, or logs.
Encryption is not magic. If everyone has admin access, encryption will not save you. If logs contain sensitive data, encryption at rest may not prevent misuse. Security comes from layers.
Backups
Section titled “Backups”A backup you have not restored is a hope, not a backup. Test restore. Know recovery time, recovery point, who can restore, and what happens if the primary database is corrupted.
For early startups, a simple monthly restore drill is powerful. It exposes whether backups exist, credentials work, documentation is current, and the team knows what to do.
Secrets
Section titled “Secrets”API keys, database passwords, signing secrets, cloud credentials, payment keys, and tokens should not live in source code, screenshots, chat, or shared spreadsheets. Use environment variables or secret managers. Rotate secrets when people leave or when exposure is suspected.
Never paste secrets into AI tools, support tickets, screenshots, or public issue trackers. Treat leaked secrets as compromised, not merely “probably fine.”
Access control
Section titled “Access control”Give people the access they need, not the access that is convenient forever. Use role-based access, two-factor authentication, offboarding checklists, and periodic access reviews. Company-controlled accounts matter.
When an employee, contractor, agency, or intern leaves, revoke access from email, code, cloud, analytics, CRM, support desk, payment systems, domain registrar, design tools, documents, and password managers. Offboarding is a security process.
Logging and monitoring
Section titled “Logging and monitoring”Log enough to investigate incidents without leaking sensitive data. Monitor errors, unusual access, failed jobs, auth failures, admin actions, payment failures, and suspicious behavior.
Good logs answer: who did what, when, from where, to which resource, and with what result? Bad logs expose passwords, tokens, personal data, private documents, or payment details.
Secure coding
Section titled “Secure coding”Use standard protections for injection, cross-site scripting, CSRF, broken access control, insecure file upload, dependency vulnerabilities, and insecure defaults. OWASP is a useful starting point for web application risk awareness.
Secure coding is not a once-a-year exercise. It should appear in code review, tests, dependency updates, deployment checks, and incident reviews.
The minimum viable security baseline
Section titled “The minimum viable security baseline”Every startup should be able to answer:
- Who owns security?
- Who has production access?
- Where are secrets stored?
- How are backups created and restored?
- What customer data is collected?
- Who can access customer data?
- What data goes to vendors and AI tools?
- What logs exist for investigation?
- What happens if a laptop, API key, database credential, or founder email is compromised?
- Who communicates with customers during an incident?
If these questions are unclear, security is founder work this week.
Product design choices that reduce risk
Section titled “Product design choices that reduce risk”Security improves when the product collects less data, exposes fewer permissions, and makes risky actions visible.
Practical design choices:
- Collect only data needed for a clear purpose.
- Avoid storing sensitive documents unless necessary.
- Separate admin and normal user actions.
- Show last login or account activity for high-risk products.
- Require confirmation for destructive actions.
- Keep audit trails for business-critical changes.
- Make data export and deletion workflows explicit.
- Limit employee impersonation or customer account access.
- Design support tools so employees do not need broad raw database access.
Security is easier when the product is designed with boundaries.
B2B security
Section titled “B2B security”If you sell to serious businesses, security becomes part of sales. Customers may ask for:
- Security questionnaire.
- Data processing agreement.
- Subprocessor list.
- Access control policy.
- Incident response process.
- Backup and disaster recovery policy.
- Pen test summary.
- SOC 2 or ISO 27001 roadmap.
- Employee onboarding/offboarding process.
- Encryption and data retention details.
Do not fake maturity. It is better to say “we do not have SOC 2 yet, but here is our current security posture and roadmap” than to make claims you cannot prove.
SOC 2 and ISO 27001
Section titled “SOC 2 and ISO 27001”These frameworks can help enterprise sales, but they are projects, not logos. Start by building the habits: policies, access reviews, change management, vendor management, incident response, risk register, evidence collection, and leadership ownership. Certification is easier when the operating system already exists.
For a young startup, the path often looks like:
- Basic security baseline.
- Written policies that match reality.
- Access reviews and evidence.
- Vendor and subprocessor inventory.
- Incident response process.
- Pen test when the product is ready.
- Formal certification when sales motion justifies it.
Pen testing
Section titled “Pen testing”A pen test is useful when there is something meaningful to test and the team can fix findings. It is not a substitute for secure development, dependency updates, access control, and monitoring.
Vendor security questionnaires
Section titled “Vendor security questionnaires”Create a standard answer bank for common questions: hosting, encryption, backups, access, logging, incident response, data retention, subprocessors, employee access, and compliance roadmap. Keep it accurate.
Incident response
Section titled “Incident response”Incidents are easier to handle if the team has rehearsed the basics.
Prepare:
- Incident owner.
- Backup owner.
- Engineering responder.
- Customer communication owner.
- Legal/compliance contact.
- Security vendor or expert contact, if needed.
- Internal communication channel.
- Incident notes template.
During an incident:
- Contain the damage.
- Preserve evidence.
- Understand affected users, data, systems, and timeframe.
- Fix the immediate issue.
- Communicate when required and appropriate.
- Rotate compromised credentials.
- Review logs and access.
- Write a post-incident note.
- Create follow-up fixes with owners and dates.
The worst incident response is silence, confusion, and undocumented guessing.
India data considerations
Section titled “India data considerations”India’s privacy and data protection environment continues to evolve, and customer geography can add obligations from other regions. Founders should check current law, rules, sectoral regulations, and customer contracts with qualified advisors. At a founder level, start with practical discipline:
- Collect only data you need.
- Explain why you collect it.
- Get appropriate consent where needed.
- Store data only where you can protect it.
- Limit employee and vendor access.
- Define retention and deletion rules.
- Respect user rights and customer contract obligations.
- Review vendors that process customer or personal data.
The Digital Personal Data Protection Act, 2023 uses concepts such as Data Fiduciary, Data Principal, Consent Manager, digital personal data, and reasonable security safeguards. It is not enough to add a privacy policy and forget operations. You need data maps, consent logic where required, vendor discipline, deletion/retention rules, and breach response thinking.
For fintech, healthtech, edtech involving minors, HR, payments, or enterprise customer data, get specific advice before launch.
CERT-In has also issued directions related to cybersecurity incident reporting, logs, time synchronization, and points of contact for covered entities. Founders should not guess whether they are covered or what timeframe applies. Check the current official guidance and get advice when an incident occurs.
Vendor and AI tool risk
Section titled “Vendor and AI tool risk”Startups increasingly send data to vendors: analytics, email, SMS, WhatsApp, cloud hosting, payment providers, CRMs, support tools, AI tools, file processors, transcription tools, and data warehouses.
Maintain a vendor register:
- Vendor name.
- Purpose.
- Data shared.
- Owner.
- Contract or terms link.
- Security notes.
- Whether personal, payment, health, child, or confidential customer data is involved.
- Exit plan.
For AI tools, define what data can and cannot be pasted. Customer data, secrets, private keys, production exports, regulated data, and confidential documents should require explicit approval and safeguards.
Common mistakes
Section titled “Common mistakes”Treating security as an enterprise checkbox
Section titled “Treating security as an enterprise checkbox”Security starts before enterprise sales. The first customer data record deserves care.
No owner
Section titled “No owner”If nobody owns security, everyone assumes someone else handled it.
Shared credentials
Section titled “Shared credentials”Shared admin accounts make offboarding and incident investigation painful.
No restore test
Section titled “No restore test”Backups are not useful unless you can restore them.
Overpromising in sales
Section titled “Overpromising in sales”Do not claim compliance, encryption, data residency, deletion, or access policies that are not true.
Logging sensitive data
Section titled “Logging sensitive data”Logs often become the accidental data leak. Review what you log.
Giving contractors permanent access
Section titled “Giving contractors permanent access”Temporary contributors often accumulate permanent privileges. Review agency and contractor access regularly.
No data map
Section titled “No data map”If you do not know where customer data flows, you cannot protect it, delete it, or answer customer questions confidently.
Security claims ahead of reality
Section titled “Security claims ahead of reality”Do not claim SOC 2, ISO 27001, encryption, data residency, deletion, or incident processes unless they are true and evidenced.
A practical 30-day security plan
Section titled “A practical 30-day security plan”Week 1:
- Turn on two-factor authentication for critical tools.
- Move secrets out of code and chats.
- Confirm company ownership of GitHub, cloud, domains, and production accounts.
- List production access.
Week 2:
- Test database restore.
- Add or review error monitoring.
- Review authentication and authorization tests.
- Document customer data collected.
Week 3:
- Create vendor register.
- Create offboarding checklist.
- Review logs for sensitive data.
- Create incident response template.
Week 4:
- Run access review.
- Patch high-risk dependencies.
- Write customer-facing security answers.
- Schedule monthly review.
This is not complete security. It is a baseline that creates control.
Security by startup stage
Section titled “Security by startup stage”Security should mature with the company, but the baseline starts early.
Idea and prototype stage
Section titled “Idea and prototype stage”Avoid collecting sensitive data unless it is essential for learning. Use company-owned accounts, two-factor authentication, and a password manager. Keep prototypes away from real customer secrets, payment data, health data, child data, or confidential business documents unless you have the safeguards and advice to handle them.
The best security decision at this stage is often product scope: do not store what you do not need.
MVP and first customers
Section titled “MVP and first customers”Create a minimum security baseline:
- Company-owned GitHub, cloud, domain, email, and payment accounts.
- Two-factor authentication for critical tools.
- Secrets outside code and chat.
- Role-based access where customer data exists.
- Backup and restore test.
- Error tracking without sensitive data leakage.
- Clear offboarding checklist.
- Basic incident response owner.
This is the point where founders often say “we will clean it up later.” Later is usually after a customer problem.
B2B sales stage
Section titled “B2B sales stage”Security becomes part of revenue. Prepare accurate answers for customer security reviews:
- Where is data hosted?
- Who can access customer data?
- How are backups handled?
- What vendors process data?
- How are employees and contractors onboarded and offboarded?
- What happens during an incident?
- What is encrypted?
- What logs and audit trails exist?
- What certifications are completed or planned?
Do not oversell. A buyer can forgive a young security program if it is honest and improving. False claims destroy trust.
Scale stage
Section titled “Scale stage”Move from founder memory to operating system:
- Formal access reviews.
- Security policies that match reality.
- Vendor review process.
- Regular dependency and patch reviews.
- Incident drills.
- Security training for employees.
- Evidence collection for enterprise customers.
- Pen tests or external assessments when justified.
- Clear data retention and deletion process.
Security at scale is mostly consistency.
Founder threat modeling
Section titled “Founder threat modeling”Threat modeling sounds technical, but founders can do a simple version. For each important workflow, ask:
- What are we protecting?
- Who should have access?
- Who should not have access?
- What could go wrong?
- How would we know?
- How would we recover?
Apply it to:
- Signup and login.
- Inviting teammates.
- Admin panel actions.
- Payments and invoices.
- Customer file upload.
- Data export.
- AI context retrieval.
- Support impersonation.
- Marketplace payouts.
- Vendor integrations.
Example:
| Workflow | What can go wrong | Early control |
|---|---|---|
| Team invites | User invites outsider to customer account | Domain warnings, role checks, audit log |
| Data export | Employee exports all customer data casually | Limit access, log exports, approval for bulk export |
| AI assistant | One customer’s docs appear in another output | Tenant isolation tests, source display, retrieval filters |
| Payment update | Wrong account plan changed | Admin confirmation, audit log, restricted role |
This exercise reveals simple fixes before they become incidents.
Access review checklist
Section titled “Access review checklist”Run a monthly access review even when the company is small.
Check:
- Email and workspace accounts.
- GitHub or source control.
- Cloud and hosting.
- Database and production consoles.
- Domain registrar and DNS.
- Payment providers.
- Analytics and data tools.
- CRM and support tools.
- Design tools and docs.
- AI tools with customer data.
- Agency and contractor accounts.
For each person or vendor, ask:
- Do they still need access?
- Is the access level too broad?
- Is two-factor authentication enabled?
- Is this a personal account or company account?
- Would we know what they changed?
- What happens if they leave tomorrow?
Small teams skip access reviews because everyone knows everyone. That is exactly when permanent access quietly accumulates.
Security room for enterprise sales
Section titled “Security room for enterprise sales”Before selling to larger companies, create a simple security folder or data room:
- Security overview.
- Architecture summary.
- Hosting and data location summary.
- Access control policy.
- Backup and disaster recovery notes.
- Incident response process.
- Vendor/subprocessor list.
- Data retention and deletion approach.
- Employee and contractor access process.
- Latest pen test or security assessment if available.
- Roadmap for gaps you have not yet closed.
Keep it accurate and dated. When the answer changes, update the folder. This saves founder time and makes the company look more professional without pretending to be larger than it is.
Security checks in product and engineering
Section titled “Security checks in product and engineering”Add a short security section to feature briefs and pull requests:
- Does this touch authentication, authorization, billing, customer data, files, or admin actions?
- What data is created, read, updated, deleted, exported, or logged?
- Who can perform the action?
- What should happen if the user loses access?
- What should happen if a vendor API fails?
- Are secrets or credentials involved?
- Is customer data sent to an AI tool or third-party service?
- What audit trail or log is needed?
Most security problems become easier when caught at feature design time instead of after deployment.
Breach rehearsal
Section titled “Breach rehearsal”Do one lightweight rehearsal before you need it. Pick a scenario:
- Founder email compromised.
- API key leaked.
- Database backup inaccessible.
- Customer reports seeing another customer’s data.
- Agency laptop lost.
- Payment webhook bug changes subscription state.
- AI output exposes private document content.
Walk through:
- Who declares an incident?
- Who investigates?
- Which systems are checked first?
- How are credentials rotated?
- How are customers informed if needed?
- What evidence is preserved?
- Who decides whether legal or regulatory advice is needed?
The first rehearsal will feel awkward. That is the point. You want the awkwardness before the emergency.
Founder Security Scorecard
Section titled “Founder Security Scorecard”Security becomes easier when founders can see it as an operating scorecard instead of a vague technical fear. Score each area monthly:
- 0 means missing or unknown.
- 1 means partially handled but not reliable.
- 2 means owned, documented, and tested enough for the current stage.
| Area | 0 | 1 | 2 |
|---|---|---|---|
| Identity and access | Shared passwords or personal accounts | Password manager and MFA used inconsistently | Password manager, MFA, named owners, quarterly access review |
| Authorization | Roles are unclear | Basic roles exist but edge cases are unknown | Permissions are tested for customer, admin, and internal workflows |
| Secrets | API keys live in chats, laptops, or code | Secrets manager used for some systems | Secrets are centralized, rotated, and removed from code/history |
| Backups | No known restore path | Backups exist but restore is untested | Restore has been tested and owner knows recovery time |
| Logging and monitoring | Incidents depend on customer complaints | Error tracking exists but alerts are noisy | Alerts, logs, owners, and incident path are clear |
| Customer data map | Nobody knows where data lives | Major systems listed | Data flow, vendors, retention, and sensitive fields documented |
| Vendor and AI tool review | Team uses tools casually | Approved tools list exists | Data rules, access rules, and review process exist for vendors and AI tools |
| Secure development | Security review happens after bugs | Sensitive changes get ad hoc review | Auth, payments, uploads, webhooks, AI context, and data access have review gates |
| Incident response | No one knows who decides | Informal escalation path | Incident roles, customer communication path, and evidence preservation are defined |
| Customer security room | Answers are improvised for each buyer | Some policies and screenshots collected | Standard security answers, policies, architecture notes, and access controls are ready |
Add the score. A tiny startup does not need a perfect 20. It needs visible risk and steady progress. If you handle payments, health data, financial data, children’s data, enterprise customer data, or sensitive AI context, raise the bar earlier.
For an Indian B2B startup, this scorecard also helps sales. Buyers may ask about data location, access control, vendor security, incident reporting, and compliance posture before procurement. A calm answer beats a last-minute scramble.
Security Evidence Pack
Section titled “Security Evidence Pack”For B2B sales, prepare a small evidence pack before the first serious buyer asks for it.
| Evidence | What It Shows |
|---|---|
| Architecture overview | Where customer data moves and where it is stored. |
| Access control note | Who can access production, customer data, admin tools, and logs. |
| Backup and restore note | How data is backed up and whether restore has been tested. |
| Incident response note | Who handles incidents and how customers are informed when needed. |
| Vendor list | Which third-party tools touch customer data. |
| AI tool policy | What data can and cannot be used with AI tools. |
| Data retention note | How long key data is kept and how deletion is handled. |
| Security review checklist | How sensitive code changes are reviewed. |
| Customer support path | How security or data concerns are escalated. |
This does not replace formal certifications when a customer truly requires them. It helps early startups answer honestly and consistently. A clear “we do this, we do not yet do that, here is the owner and timeline” is better than improvising.
Security Prioritization By Data Sensitivity
Section titled “Security Prioritization By Data Sensitivity”Raise the security bar as data sensitivity rises.
| Data Or Workflow | Minimum Extra Care |
|---|---|
| Public content only | Basic access control, backups, monitoring. |
| Customer business data | Stronger role controls, audit trail, vendor review. |
| Payments or financial workflows | Payment provider controls, reconciliation, webhook review, limited access. |
| Health, children, identity, or sensitive personal data | Data minimization, stricter access, legal review, incident plan, vendor scrutiny. |
| AI context from customer documents | Tenant isolation, evals, logging boundaries, deletion path, human review for risky outputs. |
The principle is simple: the more harm a mistake can cause, the less acceptable casual handling becomes.
Security Operating Rhythm
Section titled “Security Operating Rhythm”Security should have a rhythm even before there is a security team.
| Cadence | Activity | Owner |
|---|---|---|
| Weekly | Review incidents, suspicious access, failed jobs, customer security questions | Founder/engineering owner |
| Monthly | Access review, vendor review, backup/restore confidence, secrets check | Engineering owner |
| Quarterly | Incident rehearsal, policy refresh, data map review, security evidence pack update | Founder + engineering |
| Before enterprise sales | Security room, questionnaire answers, architecture/data flow review | Founder + engineering |
| Before sensitive launch | Threat model, permissions, logging, rollback, human review | Product + engineering |
Keep the rhythm lightweight. The value is repeated attention. Security gets dangerous when it is invisible until a customer questionnaire or incident forces panic.
Security Answer Bank
Section titled “Security Answer Bank”Create an answer bank for customer and investor questions.
| Question | Current answer | Evidence or owner |
|---|---|---|
| Where is data hosted? | ||
| Who has production access? | ||
| How are backups handled? | ||
| How are secrets stored and rotated? | ||
| How do you handle incidents? | ||
| How do you review vendors? | ||
| How do you handle customer data deletion/export? | ||
| What AI tools use customer data, if any? | ||
| What security policies exist? |
The answer bank should be honest. If something is not ready, say what exists now and what is planned. Do not invent security maturity for sales. Trust lost in diligence is hard to recover.
Data Access Triage
Section titled “Data Access Triage”Classify access before granting it.
| Access type | Default rule |
|---|---|
| Production admin | Named people only, reviewed monthly, no shared accounts |
| Database access | Limited, logged where possible, justified by task |
| Customer documents | Need-to-know, customer-aware, deletion path clear |
| Payment/admin dashboards | Restricted, MFA, reconciliation owner |
| Analytics | Broader access allowed if data is aggregated and safe |
| AI tool access | No sensitive customer data unless approved and documented |
| Agency/contractor access | Time-bound, company-owned accounts, removed at project end |
Access control is not only a technical issue. It is an operating habit. Every new teammate, agency, vendor, and AI tool creates a small trust decision.
Security Questionnaire Truth Policy
Section titled “Security Questionnaire Truth Policy”B2B startups often lose discipline when a large customer sends a security questionnaire. The temptation is to answer optimistically so the deal moves forward. Do not do this. A security answer is a promise the company may later be judged against.
Use a truth policy:
| Answer type | How to respond |
|---|---|
| Implemented | Say yes only when the control exists, is used, and has evidence. |
| Partially implemented | Explain what exists, what is missing, and the expected completion path. |
| Planned | Say planned only when there is an owner, timeline, and reason it matters. |
| Not applicable | Explain why the control does not apply to your architecture or data flow. |
| No | Say no when honest, and decide whether the deal requires a compensating control. |
Before submitting answers, create an evidence folder with policy documents, screenshots, access review notes, backup checks, incident template, vendor list, data map, and architecture note. If evidence does not exist, do not let sales invent it. Create the evidence or answer more carefully.
The best early security posture is not pretending to be enterprise-grade. It is being clear, improving fast, and never making promises the product and team cannot operate.
First Customer Security Review
Section titled “First Customer Security Review”Before the first serious customer, investor, or partner asks security questions, run a first customer security review. This is not a formal audit. It is a founder-led readiness check that makes the obvious risks visible.
Use this review:
| Area | Question | Evidence |
|---|---|---|
| Account ownership | Are domain, DNS, email, GitHub, cloud, payment, analytics, and support tools company-controlled? | Admin list and account owner note. |
| MFA and passwords | Do critical accounts use MFA and a password manager? | Access review note. |
| Production access | Who can access production, database, logs, customer data, and admin tools? | Named list with reason. |
| Secrets | Are keys, tokens, and credentials out of code, chat, screenshots, and docs? | Secret storage note and rotation owner. |
| Backups | Are backups enabled and has restore been tested? | Restore test date and owner. |
| Customer data | What data is collected, where it is stored, who can access it, and which vendors touch it? | Data map and vendor list. |
| Permissions | Can one customer, user, role, or tenant access another’s data? | Permission test notes. |
| Logs | Do logs help investigate without storing sensitive data unnecessarily? | Log review note. |
| Incident path | Who declares, investigates, contains, communicates, and documents an incident? | Incident template and owner list. |
| AI tools | Can customer or confidential data enter AI tools? Under what rule? | AI data rule and approved tools list. |
Create a simple score:
- Green: owned, evidenced, and good enough for the current customer.
- Yellow: partially handled with owner and date.
- Red: unknown, unowned, or risky enough to block the deal or launch.
Do not wait for every item to be green before selling. That would be unrealistic. But do not allow red items in areas that can expose customer data, money, identity, access, or trust.
When a buyer asks a security question, answer from evidence:
Here is what we do today, here is the evidence, here is what we do not yet do, and here is the owner/timeline for the gap.That sentence is stronger than startup bravado. Serious customers can work with honest maturity. They cannot work with false certainty.
Security Exception Register
Section titled “Security Exception Register”Startups sometimes accept temporary security exceptions. That can be reasonable if the exception is visible, owned, time-bound, and understood. Hidden exceptions become future incidents.
Track every exception:
| Field | What to record |
|---|---|
| Exception | What control is missing or weakened? |
| Reason | Why is the exception accepted now? |
| Risk | What could go wrong? |
| Compensating control | What reduces risk until fixed? |
| Owner | Who is accountable? |
| Expiry date | When must this be reviewed or fixed? |
| Customer impact | Does any customer need to know? |
Examples: shared admin account during early setup, manual access to production data, incomplete audit logs, no formal vendor review, delayed penetration test, or temporary broad permissions.
The rule is simple: no permanent “temporary” exceptions.
Security For Founder Devices
Section titled “Security For Founder Devices”Founder laptops, phones, email, cloud accounts, GitHub, domain registrar, and password manager are often the highest-risk assets in the company.
Minimum founder-device checklist:
- Password manager used for all critical accounts.
- MFA enabled on email, GitHub, cloud, domain, bank, payment, and hosting accounts.
- Device disk encryption enabled.
- OS and browser kept updated.
- No shared passwords in chat, docs, screenshots, or spreadsheets.
- Separate personal and company accounts where possible.
- Lost-device plan exists.
- Recovery emails and phone numbers are company-controlled where appropriate.
The founder’s device is part of the security perimeter. Treat it that way.
Customer Data Deletion And Retention Rule
Section titled “Customer Data Deletion And Retention Rule”Security is not only preventing access. It is also not keeping data forever without reason.
Define:
| Data type | Retention question |
|---|---|
| Account data | What must remain while the customer is active? |
| Uploaded files | When can files be deleted after processing or termination? |
| Logs | How long are logs useful for debugging/security before they become risk? |
| Support tickets | What customer data appears in support tools? |
| AI prompts/outputs | Are prompts, context, and outputs stored? For how long? |
| Backups | How long do backups retain deleted data? |
A simple retention policy improves trust, reduces breach impact, and makes enterprise security answers easier.
Sensitive Data Map For Indian Startups
Section titled “Sensitive Data Map For Indian Startups”Security starts with knowing what the company holds. Many founders cannot answer where sensitive data is stored, who can access it, which vendors process it, and how long it remains. That is a dangerous position even for a small startup.
Create a sensitive data map:
| Data area | Questions to answer |
|---|---|
| Identity | Do we store names, phone numbers, email, government IDs, business IDs, or employee records? |
| Money | Do we store payment status, invoices, bank details, mandates, refunds, wallets, credit data, or tax records? |
| Health or education | Do we store sensitive personal context, reports, assessments, counselling notes, or learner outcomes? |
| Customer content | Do users upload files, documents, messages, images, transcripts, or internal company data? |
| Usage and logs | Do logs include personal data, secrets, customer content, IP addresses, or debugging payloads? |
| AI context | Do prompts, retrieved documents, outputs, embeddings, or feedback include customer data? |
| Support tools | Do tickets, chat transcripts, screenshots, or call recordings contain sensitive data? |
For each data type, record:
| Field | Answer |
|---|---|
| Why we collect it | |
| Where it is stored | |
| Who can access it | |
| Which vendors process it | |
| How long we retain it | |
| How we delete or export it | |
| What incident would hurt users most |
Do this before the company becomes complex. A data map helps with security, customer questionnaires, enterprise sales, legal review, incident response, AI governance, and founder decision-making.
Security Incident Communications Plan
Section titled “Security Incident Communications Plan”Founders should not write their first incident message during an incident. Prepare a communication plan in advance.
Create three templates:
| Template | When used | Content |
|---|---|---|
| Investigating | Something may be wrong, facts are incomplete. | What is known, what is affected, what users should do now, next update time. |
| Confirmed impact | Customer data, access, money, uptime, or workflow is affected. | Impact, timeline, mitigation, customer action, support path, next update. |
| Resolved and reviewed | Incident is contained and lessons are known. | Root cause summary, fixes, prevention steps, and owner for follow-up. |
Rules for incident communication:
- Do not speculate beyond known facts.
- Do not hide behind vague language.
- Do not blame vendors before understanding the company’s responsibility.
- Give a next update time even if the update is “we are still investigating.”
- Keep internal notes more detailed than public notes.
- Preserve evidence before changing systems.
A small startup can recover from an incident if it is honest, fast, and competent. It is much harder to recover from confused communication, silence, or overconfidence.
Founder Security Posture Review
Section titled “Founder Security Posture Review”Security should become a recurring founder review, not an annual panic before an enterprise deal. Keep the review short and tied to real risk.
Run this monthly:
| Area | Founder question |
|---|---|
| Access | Who has admin, production, database, cloud, payment, support, and analytics access? |
| Secrets | Are secrets stored safely, rotated when needed, and absent from code/chat/docs? |
| Customer data | What sensitive data did we collect, move, export, or delete this month? |
| Vendors | Which new tools process customer, employee, financial, or AI context data? |
| AI tools | Did anyone paste customer data into AI systems outside approved workflow? |
| Backups | When was the last restore test, and what would fail today? |
| Incidents | What security, privacy, access, or suspicious events occurred? |
| Sales claims | Did sales or founders promise security posture the product does not yet have? |
| Open exceptions | Which security exceptions are still accepted, and when do they expire? |
Use three decisions:
| Decision | Meaning |
|---|---|
| Fix now | Risk could hurt customers, block sales, or create serious incident exposure. |
| Schedule | Risk matters but can be handled in a planned cycle. |
| Accept temporarily | Risk is known, owner exists, expiry date is set, and impact is limited. |
The founder should not turn security into fear. The goal is calm ownership. If a customer asks a security question, the company should be able to answer honestly:
Here is what we do today.Here is what we do not yet do.Here is who owns the gap.Here is when we will review it.Truthful security posture creates more trust than exaggerated claims. It also prevents the team from learning about risk only through a buyer questionnaire, outage, breach, or investor diligence request.
Reader action
Section titled “Reader action”Create a security baseline document with owners for authentication, authorization, secrets, backups, access reviews, logging, incident response, vendor review, AI tool use, data map, and customer security answers. Review it monthly until it becomes routine.
Official references
Section titled “Official references”- CERT-In Directions under section 70B of the IT Act
- Digital Personal Data Protection Act, 2023
- OWASP Top Ten Web Application Security Risks
- OWASP Top 10 for Large Language Model Applications
- NIST Cybersecurity Framework
- NIST AI Risk Management Framework