{"id":20190105,"url":"https://github.com/mempirate/go-fingerprint","last_synced_at":"2026-06-09T15:01:43.629Z","repository":{"id":218583979,"uuid":"332186354","full_name":"mempirate/go-fingerprint","owner":"mempirate","description":"ARP fingerprinter written in Go","archived":false,"fork":false,"pushed_at":"2021-02-27T11:32:02.000Z","size":2666,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-27T09:37:50.617Z","etag":null,"topics":["arp","go","gopacket","network","scanner"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mempirate.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-01-23T10:45:47.000Z","updated_at":"2021-07-26T18:20:09.000Z","dependencies_parsed_at":"2024-01-22T23:18:02.409Z","dependency_job_id":null,"html_url":"https://github.com/mempirate/go-fingerprint","commit_stats":null,"previous_names":["mempirate/go-fingerprint"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mempirate/go-fingerprint","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mempirate%2Fgo-fingerprint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mempirate%2Fgo-fingerprint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mempirate%2Fgo-fingerprint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mempirate%2Fgo-fingerprint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mempirate","download_url":"https://codeload.github.com/mempirate/go-fingerprint/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mempirate%2Fgo-fingerprint/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34112225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arp","go","gopacket","network","scanner"],"created_at":"2024-11-14T03:40:39.453Z","updated_at":"2026-06-09T15:01:43.613Z","avatar_url":"https://github.com/mempirate.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go-fingerprint\n\nFingerprints devices on the network using crafted ARP requests and MAC OUIs.\n\n## Usage\n**Linux**\n```\n$ go-fingerprint -i eth0 \n2021/01/24 20:08:14\n[*] Scanning on eth0: 172.18.8.216 [172.18.0.0/20]\nIPv4                 MAC                  Hardware                      \n===================================================================\n172.18.0.1           00:15:5d:8f:xx:4c    Microsoft Corporation\n172.18.0.3           28:c6:8e:xx:26:7b    NETGEAR             \n172.18.0.3           04:18:d6:xx:ad:f7    Ubiquiti Networks Inc.\n```\n**Windows**\n```\nPS C:\\\u003e go-fingerprint.exe -i wi-fi\n2021/01/24 20:08:14\n[*] Scanning on \\Device\\NPF_{F27xxxxx-BF44-4xxx-8F50-2815xxxxxx85}: 192.168.1.103 [192.168.200.0/0]\nIPv4                 MAC                  Hardware                      \n===================================================================\n192.168.1.8          04:18:d6:xx:ad:f7    Ubiquiti Networks Inc.\n192.168.1.3          28:c6:8e:xx:26:7b    NETGEAR             \n192.168.1.6          3c:2a:f4:xx:71:7f    Brother Industries, LTD.\n192.168.1.11         40:cb:c0:xx:36:93    Apple, Inc.         \n192.168.1.5          78:8a:20:xx:27:77    Ubiquiti Networks Inc.\n192.168.1.102        28:3a:4d:xx:02:bb    Cloud Network Technology (Samoa) Limited\n192.168.1.123        90:b0:ed:xx:46:cd    Apple, Inc.         \n```\n\n\n## Installation\nMake sure your GOPATH environment variable is set and GOPATH/bin is added to your path.\n\n**Linux \u0026 MacOS**\n\nDependencies on Linux:\n* libpcap: `sudo apt-get install libpcap-dev`\n\nGo get:\n```\n$ go get github.com/jonasbostoen/go-fingerprint\n$ cd $GOPATH/src/github.com/jonasbostoen/go-fingerprint\n$ make all\n```\n\nFrom source:\n```\n$ git clone https://github.com/jonasbostoen/go-fingerprint\n$ cd go-fingerprint\n$ make all\n```\n\n**Windows**\n\nGo get:\n```\nPS C:\\\u003e go get github.com/jonasbostoen/go-fingerprint\n```\n\n## Todo\n* Hardcode common OUIs\n* Custom fingerprinting \n* Performance\n    * https://segment.com/blog/allocation-efficiency-in-high-performance-go-services/\n    * https://blog.golang.org/pprof\n\n## Sources:\n* [IEEE OUI list](http://standards-oui.ieee.org/oui/oui.txt)\n* [arp-fingerprint](https://linux.die.net/man/1/arp-fingerprint)\n    * Basically fuzzes the target with different payloads to see what responses are generated.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmempirate%2Fgo-fingerprint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmempirate%2Fgo-fingerprint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmempirate%2Fgo-fingerprint/lists"}