{"id":37131191,"url":"https://github.com/anataarxvi/vizion","last_synced_at":"2026-01-14T15:05:39.654Z","repository":{"id":218340376,"uuid":"745186248","full_name":"AnataarXVI/vizion","owner":"AnataarXVI","description":"The Golang-based library for packet manipulation and dissection","archived":false,"fork":false,"pushed_at":"2024-03-10T17:12:03.000Z","size":2517,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-21T17:02:40.807Z","etag":null,"topics":["golang","network","network-analysis","network-secuirty","network-visualization","offensive","packet","packet-analyser","packet-crafting","packet-sniffer","security","vizion"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AnataarXVI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-18T20:07:58.000Z","updated_at":"2024-03-05T18:04:01.000Z","dependencies_parsed_at":"2024-02-04T14:49:07.207Z","dependency_job_id":"542140f6-c585-46a6-9418-3303a34903f6","html_url":"https://github.com/AnataarXVI/vizion","commit_stats":null,"previous_names":["anataarxvi/vizion"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/AnataarXVI/vizion","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnataarXVI%2Fvizion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnataarXVI%2Fvizion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnataarXVI%2Fvizion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnataarXVI%2Fvizion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AnataarXVI","download_url":"https://codeload.github.com/AnataarXVI/vizion/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnataarXVI%2Fvizion/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28424042,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["golang","network","network-analysis","network-secuirty","network-visualization","offensive","packet","packet-analyser","packet-crafting","packet-sniffer","security","vizion"],"created_at":"2026-01-14T15:05:39.077Z","updated_at":"2026-01-14T15:05:39.642Z","avatar_url":"https://github.com/AnataarXVI.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cimg src=\"docs/vizion.png\" width=\"110\" valign=\"middle\" alt=\"Vizion\" /\u003e \u0026nbsp;\u0026nbsp; Vizion\n\n[![GoDoc](https://godoc.org/github.com/google/gopacket?status.svg)](https://godoc.org/github.com/AnataarXVI/vizion)\n[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](LICENSE)\n\nVizion is a library designed for building and dissecting network packages with great speed and efficiency.\n\n## Installation \n\nTo download this library do :\n\n```\n$ go get github.com/AnataarXVI/vizion\n```\n\n## Getting started\n\nVizion can be imported as a library. This library lets you create fully customizable packets. \n\nHere's how to import the library:\n\n```go\nimport (\n    . \"github.com/AnataarXVI/vizion\"\n    \"github.com/AnataarXVI/vizion/packet\"\n    \"github.com/AnataarXVI/vizion/layers\"\n)\n```\n\nHere is an example of how to create a packet :\n\n```go\n\nfunc main() { \n    // Create the packet\n    pkt := packet.Packet{}\n\n    // Create the Ethernet layer with default values set\n    etherLayer := layers.EtherLayer()\n    // Modify the Type field of the layer\n    etherLayer.Type = 0x0806\n\n    // Create the ARP layer with default values set \n    arpLayer := layers.ARPLayer()\n\n    // Add layers to the packet\n    pkt.AddLayers(\u0026etherLayer, \u0026arpLayer)\n\n    // Show the packet composition\n    pkt.Show()\n\n    // Send the packet on 'lo' interface\n    Send(pkt, \"lo\")\n}\n\n```\n\n_Result:_\n\n![](./docs/images/get_started.png)\n\n## Ressources\n\nIn the [docs](./docs) folder, you'll find all the documentation you need to get started with the library.\n\nSome useful resources :\n\n- [Build a packet](./docs/Build_packet.md)\n- [Sniff packets](./docs/Sniff_packet.md)\n- [Create a dissector](./docs/Create_dissector.md)\n\n\n## Contributing\n\nThis project is currently under development. I am open to any improvements or advice. \n\nYou can contact me at anataar@protonmail.com or open an issue.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanataarxvi%2Fvizion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanataarxvi%2Fvizion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanataarxvi%2Fvizion/lists"}