{"id":13774687,"url":"https://github.com/thephez/wireshark-plugin-dash","last_synced_at":"2025-07-06T10:07:18.096Z","repository":{"id":93144177,"uuid":"92975527","full_name":"thephez/wireshark-plugin-dash","owner":"thephez","description":"Wireshark dissector plugin for the Dash cryptocurrency protocol","archived":false,"fork":false,"pushed_at":"2019-10-11T20:08:07.000Z","size":628,"stargazers_count":10,"open_issues_count":0,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-06T21:42:27.353Z","etag":null,"topics":["wireshark-dissector","wireshark-dissector-plugin","wireshark-plugin"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thephez.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2017-05-31T18:18:34.000Z","updated_at":"2024-08-12T19:30:14.000Z","dependencies_parsed_at":"2023-06-05T05:15:43.467Z","dependency_job_id":null,"html_url":"https://github.com/thephez/wireshark-plugin-dash","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/thephez/wireshark-plugin-dash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thephez%2Fwireshark-plugin-dash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thephez%2Fwireshark-plugin-dash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thephez%2Fwireshark-plugin-dash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thephez%2Fwireshark-plugin-dash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thephez","download_url":"https://codeload.github.com/thephez/wireshark-plugin-dash/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thephez%2Fwireshark-plugin-dash/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263882287,"owners_count":23524461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["wireshark-dissector","wireshark-dissector-plugin","wireshark-plugin"],"created_at":"2024-08-03T17:01:29.305Z","updated_at":"2025-07-06T10:07:18.078Z","avatar_url":"https://github.com/thephez.png","language":"C","funding_links":[],"categories":["\u003ca id=\"6fa0e0d1f898fba299b2566a33602841\"\u003e\u003c/a\u003eWireshark"],"sub_categories":[],"readme":"# Wireshark dissector plugin for the [Dash](https://www.dash.org/) cryptocurrency protocol\nA Dash protocol dissector converted from the bitcoin built-in dissector and updated to include Dash specific commands (based on [outdated protocol documentation](https://github.com/dashpay/dash/blob/v0.12.2.x/dash-docs/protocol-documentation.md) and [source code](https://github.com/dashpay/dash/blob/master/src/protocol.cpp)). All messages are now dissected in significant detail.\n\nCurrent limitations:\n - Governance object (`govobj`) data field is not dissected\n - The script field of TxOuts is not dissected\n\n## To Build (on Linux Mint 17.3)\n - Clone Wireshark from [https://github.com/wireshark/wireshark](https://github.com/wireshark/wireshark)\n - Clone this plugin repository\n - From this repository, copy *CMakeListsCustom.txt* / the *plugins* folder and paste into the root of the cloned Wireshark folder\n - Follow the Wireshark build instructions\n\nNote: This was built with Wireshark 2.3.  To use with Wireshark 2.2 it is necessary to build using the master-2.2 branch of this repository\n\n## Releases\n - Currently the plugin has only been built on Linux Mint 64 bit.  A binary can be downloaded from the [releases page](https://github.com/thephez/wireshark-plugin-dash/releases/latest).\n\n## Capture screenshot\nThis shows a dissected Masternode Ping message. The packet also contains a Governance Vote.\n![](plugins/dash/wireshark-dash-dissection.png)\n\n## Dash specific protocol implementation status (excludes items shared with the Bitcoin protocol)\nName | Recognized | Dissected | Status | Description\n--- | --- | --- | --- | ---\n[blocktxn](https://dash-docs.github.io/en/developer-reference#blocktxn) | Y | Y | | Block Transactions (compact block-related)\n[cmpctblock](https://dash-docs.github.io/en/developer-reference#cmpctblock) | Y | Y | | Compact Block\n[dsa](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#dsaccept---dsa) | Y | Y |  | Darksend Accept\n[dsc](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#dscomplete---dsc) | Y | Y |  | Darksend Complete\n[dseg](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#dseg---dseg) | Y | Y |  | Masternode List/Entry Sync\n[dsf](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#dsfinaltx---dsf) | Y | Y |  | Darksend Final Transaction\n[dsi](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#dsvin---dsi) | Y | Y |  | Darksend Entry\n[dsq](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#dsqueue---dsq) | Y | Y |  | Darksend Queue\n[dss](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md) | Y | Y |  | Darksend Sign Final Transaction\n[dssu](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#dsstatusupdate---dssu) | Y | Y |  | Mixing Pool Status Update\n[dstx](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#dstx---dstx) | Y | Y |  | Darksend Broadcast\n[getblocktxn](https://dash-docs.github.io/en/developer-reference#getblocktxn) | Y | Y | | Get block transaction(s) (compact block-related)\n[govobj](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#mngovernanceobject---govobj) | Y | Y |  | Governance Object\n[govobjvote](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#mngovernanceobjectvote---govobjvote) | Y | Y |  | Governance Vote\n[govsync](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#mngovernancesync---govsync) | Y | Y |  | Governance Object Sync\n[ix](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#txlockrequest---ix) | Y | Y |  | Transaction Lock Request (InstantSend)\n[mnb](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#mnannounce---mnb) | Y | Y |  | Masternode Broadcast\n[mnget](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#masternodepaymentsync---mnget) | Y | Y |  | Masternode Payment Sync\n[mnp](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#mnping---mnp) | Y | Y |  | Masternode Ping\n[mnv](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#mnverify---mnv) | Y | Y |  | Masternode Verify\n[mnw](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#masternodepaymentvote---mnw) | Y | Y |  | Masternode Payment Vote\n[mnwb](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#masternodepaymentblock---mnwb) | Y | NA | Inventory only | Masternode Payment Block (no message - inventory only)\n[sendcmpct](https://dash-docs.github.io/en/developer-reference#sendcmpct) | Y | Y | | Send compact blocks\n[spork](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#spork---spork)| Y | Y |  | Spork status\n[ssc](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#syncstatuscount---ssc) | Y | Y |  | Sync Status Count\n[txlvote](https://github.com/dashpay/dash/blob/master/dash-docs/protocol-documentation.md#txlockvote---txlvote) | Y | Y |  | Transaction Lock Vote\n\n## Example display filter\nThis example of using display filters shows how to show messages related to a\nPrivateSend session.\n\n```\nip.addr == 217.182.229.150 \u0026\u0026 (dash.dsa || (dash.dsq.ready==1) || dash.dsi || \\\n  dash.dsf || dash.dss || dash.dsc || dash.dssu || dash.dstx)\n```\n![](plugins/dash/privatesend-session-example.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthephez%2Fwireshark-plugin-dash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthephez%2Fwireshark-plugin-dash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthephez%2Fwireshark-plugin-dash/lists"}