kkrypt0nn / gomanuf

πŸ“‡ A very simple Go library to get the manufacturer of a specific MAC address

Home Page:https://krypton.ninja

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gomanuf

Go Reference Repository License Code Size Last Commit

gomanuf is a very simple library to get the manufacturer of a specific MAC address.

Installation

If you want to use this library for one of your projects, you can install it like any other Go library

go get github.com/kkrypt0nn/gomanuf

Example

package main

import (
	"fmt"
	"github.com/kkrypt0nn/gomanuf"
)

func main() {
	manuf, _ := gomanuf.Search("C4:A8:1D:73:D7:8C")
	fmt.Println(manuf)
}

License

This library was made with πŸ’œ by Krypton and is under the MIT license.

About

πŸ“‡ A very simple Go library to get the manufacturer of a specific MAC address

https://krypton.ninja

License:MIT License


Languages

Language:Go 59.5%Language:Python 40.5%