Add Text Machine to Links - #19
Open
cateyelow wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds one line to the
Linkslist, alphabetically between Talos Intelligence and Threat Fox.Text Machine is a free, fully client-side cipher toolkit. The linked page is the cipher identifier: you paste unknown ciphertext and it runs character-set checks, Index of Coincidence, and chi-squared shift tests to rank the likely ciphers, then decodes the message inline for anything that needs no key (Morse, binary, Base64, hex, Baconian, Polybius, A1Z26, ASCII, Atbash, Caesar). For the two that need a search there are auto-solvers that recover the plaintext without a key: Vigenere (Kasiski + IoC key-length, then per-column frequency) and monoalphabetic substitution (simulated annealing on trigram fitness).
Behind it are ~31 classical cipher encoders/decoders, including several that are hard to find elsewhere (Bazeries, Chaocipher, Straddling Checkerboard, VIC, M-94, Trithemius, Porta), plus frequency analysis and Kasiski examination tools.
Everything runs in the browser, so ciphertext is never uploaded. No signup, no ads.
Relevant to this list because it sits alongside the dCode and Morse decoder entries already here, and covers the "I have a blob of mystery text and no idea where to start" case those do not.
Disclosure: I built it.