defango

URL / IP / Email defanging with Golang. Make IoC harmless.

MIT License

Stars
9

Install 📡

go get github.com/edoardottt/defango

Get Started 🎉

package main

import (
    "fmt"
    "log"
    "github.com/edoardottt/defango"
)

func main() {
    fmt.Println(defango.IP("8.8.8.8:53"))

    u, err := defango.URL("http://malicious.example.link.com:666/m4lw4r3.exe")
    if err != nil {
      log.Fatal(err)
    }
    fmt.Println(u)

    fmt.Println(defango.Email("mailto:[email protected]"))
}

Read the full package documentation here.

Changelog 📌

Detailed changes for each release are documented in the release notes.

Contributing 🛠

Just open an issue / pull request.

Before opening a pull request, download golangci-lint and run

golangci-lint run

If there aren't errors, go ahead :)

License 📝

This repository is under MIT License. edoardoottavianelli.it to contact me.

Package Rankings
Top 14.45% on Proxy.golang.org