An open API service indexing awesome lists of open source software.

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.

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)
}
}
```