Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyclone-github/accent_permutator
accent_permutator is a tool to transform characters from ASCII / UTF-8 to accented characters such as "o" to "ò"
https://github.com/cyclone-github/accent_permutator
accented-characters ascii cyclone golang utf-8
Last synced: 2 months ago
JSON representation
accent_permutator is a tool to transform characters from ASCII / UTF-8 to accented characters such as "o" to "ò"
- Host: GitHub
- URL: https://github.com/cyclone-github/accent_permutator
- Owner: cyclone-github
- License: gpl-2.0
- Created: 2023-08-11T04:42:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-30T18:23:47.000Z (9 months ago)
- Last Synced: 2024-11-02T18:41:33.028Z (3 months ago)
- Topics: accented-characters, ascii, cyclone, golang, utf-8
- Language: Go
- Homepage:
- Size: 16.6 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-password-cracking - accent_permutator - A tool to transform characters from ASCII / UTF-8 to accented characters such as "o" to "ò". (Wordlist tools / Generation/Manipulation)
README
[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=cyclone-github&repo=accent_permutator&theme=gruvbox)](https://github.com/cyclone-github/)
# accent_permutator
- accent_permutator is a tool to transform characters to accented characters such as "o" to "ò"
- tool will accept ASCII, UTF-8 and $HEX[] formatted wordlists
- ex input: plaintext "password" or "$HEX[70617373776f7264]"
- ex usage: cat wordlist.txt | ./accent_permutator.bin | hashcat.bin...
- written by cyclone### version history
- v2023-08-10.2330; initial github release
- v2023-08-16.1430; changed read logic to process large wordlists line by line, preventing memory issues### Compile from source:
- If you want the latest features, compiling from source is the best option since the release version may run several revisions behind the source code.
- This assumes you have Go and Git installed
- `git clone https://github.com/cyclone-github/accent_permutator.git`
- `cd accent_permutator`
- `go mod init accent_permutator`
- `go mod tidy`
- `go build -ldflags="-s -w" .`
- Compile from source code how-to:
- https://github.com/cyclone-github/scripts/blob/main/intro_to_go.txt