Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkrypt0nn/gomanuf
📇 A very simple Go library to get the manufacturer of a specific MAC address
https://github.com/kkrypt0nn/gomanuf
go goland golang gomanuf google google-go mac mac-address mac-address-analyzer mac-address-generator mac-address-manufacturer mac-adresses manuf manufacturer wireshark
Last synced: about 2 months ago
JSON representation
📇 A very simple Go library to get the manufacturer of a specific MAC address
- Host: GitHub
- URL: https://github.com/kkrypt0nn/gomanuf
- Owner: kkrypt0nn
- License: mit
- Created: 2023-01-12T18:22:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T01:18:56.000Z (about 2 months ago)
- Last Synced: 2024-10-24T11:11:25.995Z (about 2 months ago)
- Topics: go, goland, golang, gomanuf, google, google-go, mac, mac-address, mac-address-analyzer, mac-address-generator, mac-address-manufacturer, mac-adresses, manuf, manufacturer, wireshark
- Language: Go
- Homepage: https://krypton.ninja
- Size: 73 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# gomanuf
[![Go Reference](https://pkg.go.dev/badge/github.com/kkrypt0nn/gomanuf.svg)](https://pkg.go.dev/github.com/kkrypt0nn/gomanuf) ![Repository License](https://img.shields.io/github/license/kkrypt0nn/gomanuf?style=flat-square) ![Code Size](https://img.shields.io/github/languages/code-size/kkrypt0nn/gomanuf?style=flat-square) ![Last Commit](https://img.shields.io/github/last-commit/kkrypt0nn/gomanuf?style=flat-square)
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```shell
go get github.com/kkrypt0nn/gomanuf
```## Example
```go
package mainimport (
"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.md) license.