ZymuraBlog

Automation · 23 August 2026 · 6 min read

Someone else's automation runs with your credentials

Exporting a flow is safe. Importing one is a different question, and the asymmetry is easy to miss.

Sharing protects the person sharing. It is the person importing who takes on something.

Every automation tool with a share feature has the same design. You export a workflow, the export strips your credentials, and what leaves is structure without secrets — the steps, their order, their configuration, with the connections replaced by placeholders. This is correct and necessary, and it means posting a flow publicly does not leak your keys.

The half that gets less attention is what happens at the other end. The recipient imports the file, connects their own accounts to the placeholders, and runs it. The flow now executes with their credentials, doing whatever it says.

Why this is not like installing a library

Package ecosystems have this problem too, and have built decades of defences: signing, registries, lockfiles, advisories, large numbers of eyes on popular packages. A shared workflow has none of that. It is a file in a forum post.

It is also, unlike most libraries, guaranteed to have credentials attached. That is the entire point of connecting it. A workflow with no access to your accounts does nothing useful, so the moment it is worth running, it is running with real authority.

Author exports secrets removed flow.json structure only You import your keys attached the risk changes hands at the arrow
The export is safe. The import is the decision.

What to actually look at

An exported flow is readable JSON. It is not pleasant reading, but it is short, and you only need to answer four questions.

What does it talk to

Find every step that makes an outbound request and read the destination. A generic HTTP step can point anywhere, and that is exactly what makes it useful and worth checking. A flow that claims to tidy a spreadsheet has no business posting to a host you do not recognise.

What does it send

Look at what is in the body of those requests. Data flowing outward from a step that has access to your records is the case that matters. Field names are usually enough to tell.

What does it delete or overwrite

Destructive operations are the ones you cannot walk back. A flow that writes is a flow that can write the wrong thing to the right place.

What is its schedule

A thing that runs every five minutes has a hundred times the opportunity of a thing that runs daily. Check the trigger before you check anything else, because it multiplies everything.

Run it small first

Reading catches the obvious. The rest is caught by not trusting your reading.

None of this is a reason not to share flows. Shared automations are one of the genuinely good things about this category of tool — somebody has already solved the boring problem you are about to solve. It is a reason to spend two minutes reading before connecting.

What we owe you here

Tool builders, ourselves included, tend to describe sharing in warm language and leave the import side implicit. That is a small dishonesty. The honest framing is that an export is safe for the author and an import is a decision by the recipient, and the interface should say so at the moment of importing rather than in a document nobody opens.

You would read a shell script before running it. This is a shell script with your API keys already in the environment.

Flows that run without youScheduled workflow automation on our servers, not in a browser tab. 51 connectors, visual builder, free tier included.

Open the app