https://github.com/picatz/homoglyphr
📯 Confusing domain name character generator.
https://github.com/picatz/homoglyphr
domain-names golang homoglyphs homograph-attack library
Last synced: 9 months ago
JSON representation
📯 Confusing domain name character generator.
- Host: GitHub
- URL: https://github.com/picatz/homoglyphr
- Owner: picatz
- Created: 2018-01-14T16:56:11.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-14T17:02:02.000Z (over 8 years ago)
- Last Synced: 2025-08-02T17:43:14.578Z (11 months ago)
- Topics: domain-names, golang, homoglyphs, homograph-attack, library
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 10
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# homoglyphr
> Confusing domain name character generator.
A simple [homoglyph](https://en.wikipedia.org/wiki/Homoglyph) generation library for gophers focused on registrable domain name characters.
## Installation
```
go get github.com/picatz/homoglyphr
```
## Example Usage
```go
package main
import (
"fmt"
"github.com/picatz/homoglyphr"
)
func main() {
for similar := range homoglyphr.StreamAllRelatedCharacters("g") {
fmt.Println(similar)
}
}
```