Jad Technologies

Most security reviews stop at your login page. We read the repository.

A black-box test finds what an outsider can reach in a week. Reading the code finds the hardcoded credential, the query built by concatenation, and the endpoint that forgot its authorisation check. If you inherited this codebase, the second list is the one that should keep you up.

what a code review reaches that a scan does not
Authorisation logic, route by routemissed→audited
Secrets in git historymissed→found
What your logs capturemissed→reviewed
Dependency tree, full depthpartial→complete
A patch you can applyno→included

Teams call for one of three reasons

deal blocked

A questionnaire landed

An enterprise prospect sent a security questionnaire or a vendor review, and nobody on your team can answer it honestly. The deal sits still while you work out what to say.

unknown

You inherited the code

Someone else wrote it and left. You have no idea what it logs, what it stores, what it exposes, or which dependency has not been touched in three years.

deadline

SOC 2 is coming

You need it for the next tier of customer, and you would rather find the gaps now than pay an auditor three times as much to find them for you.

Code-level, not checkbox-level

Four things, and they can be bought separately or together.

Secure code review

  • Authentication and authorisation logic, route by route
  • Injection paths — SQL, NoSQL, command and template
  • Secrets in source, in configuration and in git history
  • Input validation at every system boundary
  • Session handling, tokens and password storage
  • What gets logged, and whether it should be

Dependency and supply chain

  • Known vulnerabilities across the full dependency tree
  • Abandoned and unmaintained packages you rely on
  • Typosquats and suspicious install scripts
  • Licence exposure that legal will eventually ask about
  • An upgrade path ordered by risk, not by version number

Questionnaire and vendor review

  • We work through the questionnaire with you, honestly
  • Blockers that can be fixed in days get fixed
  • Written, defensible answers for everything else
  • A reusable document for the next customer who asks

SOC 2 readiness

  • Gap assessment against the Trust Services Criteria
  • What evidence you need, and where it comes from
  • Technical controls you are missing, prioritised
  • A realistic timeline before you engage an auditor

Readiness work, not the audit. The audit itself has to come from a licensed CPA firm.

What the findings look like

Every entry carries a severity, the file it lives in, why it matters in your context, and a fix you can apply.

RefFindingSeverityFix
S-01Password reset tokens generated with Math.random(), predictable across sessionscritical2 hours
S-02Tenant identifier taken from the request body, not the session — cross-tenant read possiblecritical1 day
S-03Stripe secret key present in git history from an early commit, never rotatedcritical1 hour, plus rotation
S-04Report export builds SQL by string concatenation on a user-supplied sort fieldcritical3 hours
S-05JWTs signed but never checked for expiry on the websocket pathhigh3 hours
S-06Full request bodies written to logs, including card metadata and addresseshigh4 hours
S-07File upload trusts the client-supplied content type, no extension allowlisthigh5 hours
S-08Nine transitive dependencies with published CVEs; two reachable from request handlershigh1 day

An anonymised composite of the kind of finding this work surfaces. Yours arrives in the same shape, with file and line for every entry, plus an executive summary short enough that your buyer's security team will read it.

Fees, in public

For comparison: a scoped application penetration test runs $4,000 to $8,000 at seed stage and $8,000 to $15,000 at Series A. A consultant-led SOC 2 readiness assessment runs $5,000 to $15,000.

Questionnaire unblock

$1,500
Five business days
  • We work the questionnaire with you
  • Quick-win blockers fixed inside the week
  • Written answers you can defend on a call
  • A reusable security overview document
  • Credited in full against a code review within 30 days
Start here
Where most teams start

Secure code review

$4,900
Two weeks, one application and its API
  • Full manual review of the codebase
  • Dependency and supply-chain audit
  • Findings ranked by severity and exploitability
  • Remediation guidance with working code
  • Executive summary your buyers can read
  • Free re-review of your fixes within 60 days
Book a call

SOC 2 readiness

$7,500
Three to four weeks
  • Gap assessment against Trust Services Criteria
  • Evidence plan, control by control
  • Technical remediation roadmap, prioritised
  • Policy templates adapted to how you actually work
  • A realistic timeline to audit readiness
Ask about it

Booked alongside a rescue, the diagnostic is included

If you inherited the codebase, the security review and the 21-day backend rescue cover the same repository from two directions — one makes it defensible, the other makes it maintainable. Taken together, the $1,800 diagnostic comes at no extra cost.

Work you can go and look at

Two of these are live products you can open right now. The third is the platform I architect in my day job.

Integrated medical platform

Senior Node developer, 2023 to present

Architected a platform consolidating CRM, records, scheduling and multi-branch operations for a clinical group.

  • 600+ internal users, 1,000 prospects a day
  • Kafka pipelines carrying 5,000+ events daily
  • Led the move from monolith to microservices
  • Established the CI/CD pipeline and OpenAPI documentation
  • Mentors three developers on the team

Jade

Sole architect and developer — tujade.com

A multi-tenant ERP for small and mid-size businesses, with double-entry accounting as the system of record.

  • 20 tenants in production on a single 4 vCPU VPS
  • ~140,000 lines of TypeScript, 141 data models, 50+ backend modules
  • Schema-per-tenant isolation with subdomain routing
  • ~100 Jest and Playwright suites behind an automated QA gate
  • Architecture decision records, scripted deployments

canchaYa

Sole architect and developer — micanchaya.com

Tournament management and ticketing, with a paying client running live competitions on it.

  • Multi-tenant platform with a public fan portal
  • QR ticketing, revenue dashboards, thermal printing
  • Offline-first Android point of sale in Kotlin and Compose
  • Idempotent server-side deduplication of offline sales
  • TOTP two-factor, CSRF protection, full ES and EN

Who does the work

A master's in digital forensics and cybersecurity from CUNY John Jay in New York, on top of a bachelor's in computer science and twelve years of building software. I have also held the job directly: an IT security specialist role for a UK company, automating workstation and server security monitoring in Python, Bash and PowerShell, and triaging incidents across global teams.

The part that matters more for a code review is that I am a working backend engineer, not a security generalist meeting your stack for the first time. I architected a platform serving 600 internal users and a thousand daily prospects, built the Kafka pipelines behind it, and run two multi-tenant products of my own — one with schema-per-tenant isolation, rotating refresh tokens hashed with Argon2id, TOTP two-factor and CSRF protection, because I had to make those decisions myself and live with them.

That combination is the whole offer. I can tell you whether a finding is genuinely exploitable in your architecture rather than theoretically exploitable in general, and then hand you the patch — because I write this code every working day.

Daniel Mera

Ambato, Ecuador. UTC−5, which is New York's working day. English C1, Spanish native.

  • 12+ years across software engineering, IT security and technical education
  • MS, Digital Forensics and Cybersecurity — CUNY John Jay, New York
  • BA, Computer Science — Universidad Tecnológica Indoamérica
  • Delivered remotely for teams in the United States, United Kingdom, Mexico, Argentina and El Salvador
Languages
TypeScript, JavaScript, Python, Kotlin, SQL, Bash
Backend
Node.js, NestJS, Express, REST, Prisma, Sequelize
Architecture
Microservices, event-driven systems, Apache Kafka, multi-tenant SaaS with schema-per-tenant isolation
Frontend
React, Redux Toolkit, TanStack Query, RxJS, Tailwind, Material UI
Data
PostgreSQL, MySQL, MariaDB, MongoDB, SQL Server
Platform
Docker, Nginx, CI/CD, Linux VPS operations, n8n automation
Testing
Jest, Playwright, Swagger and OpenAPI, automated QA gates
Mobile
Kotlin, Jetpack Compose, Kotlin Multiplatform
Security
Secure code review, digital forensics, vulnerability assessment

Straight answers

Is this a penetration test?

No, and the distinction matters enough to lead with it. A penetration test attacks your running application from the outside. This is a review of the source code, which finds a different and usually larger set of problems — the ones an attacker would need luck or a lot of time to stumble into. If a customer contract specifically requires a third-party penetration test, say so on the call and I will point you to someone who does that properly.

Can you issue a SOC 2 report?

No. A SOC 2 report can only be issued by a licensed CPA firm, and anyone telling you otherwise is selling something that will not survive contact with your customer's procurement team. What I do is the readiness work that comes before: find the gaps, build the evidence plan, fix the technical controls, so that the audit is not the first time you discover what is missing.

What do we actually receive?

A written report with every finding rated by severity and exploitability, the specific file and line, why it matters in your context, and how to fix it with working code. Plus an executive summary short enough that your buyer's security team will actually read it, and a call to walk through all of it.

What access do you need?

Read access to the repository, and a conversation about your architecture. Nothing in production. I will sign your NDA before anything is shared, or use mine if you prefer.

What happens if you find something serious?

You hear about it the day I find it, not in the report three weeks later. Anything actively exploitable is escalated immediately, with the fix, before the rest of the engagement continues.

Twenty minutes, no pitch

Tell me what triggered this — a questionnaire, an inherited codebase, or an audit on the horizon. You will leave knowing what needs doing and what it costs, whether or not you hire me.