Data handling

Know what stays local and what should stay out.

FreeToolsBox is designed around browser-first transformations for small developer snippets. This page explains the practical processing model and the safety boundary for online tools.

01

Avoid entering passwords, private keys, production tokens, customer records, personal IDs, medical data, financial data, or confidential company material.

02

Use sanitized snippets when debugging and keep production data in trusted internal systems.

03

Analytics, ads, CDN, verification, and browser infrastructure can still process normal web request metadata even when a tool transformation runs locally.

Tool-by-tool matrix

Processing matrix

Use this matrix to decide whether a sample is appropriate for a browser tool. When in doubt, sanitize first or keep the workflow inside your own environment.

ToolInputProcessing modelAvoid entering
JSON FormatterTextarea inputParsed and formatted in the browserAvoid entering tokens, emails, IDs, and customer records before pasting.
Base64Text snippetsEncoded and decoded in the browserBase64 is readable by anyone; it is not encryption.
JWT DecoderToken-like stringsHeader and payload decoded in the browserAvoid production bearer tokens; decoding does not verify signatures.
Regex TesterPattern and sample textTested with the browser JavaScript RegExp engineAvoid private logs or regulated text.
Hash GeneratorText snippetsDigest generated in the browserPlain hashes are not password storage algorithms.
URL EncoderURL componentsEncoded and decoded in the browserURLs can leak through logs, browser history, and referrers.
Timestamp ConverterDates and numeric timestampsConverted in the browserCheck timezone assumptions before using deadlines.
Password GeneratorGeneration settingsRandom values generated with browser crypto APIsStore generated passwords in a trusted password manager.