Vector35 / community-plugins

Repository for community provided Binary Ninja plugins
MIT License
430 stars 34 forks source link

[New Plugin]: pDf Reference Opcodes Or reGisters (DROOG) #270

Closed amtal closed 3 months ago

amtal commented 3 months ago

Plugin Description

Per the README's Usage section,

This is a glorified PDF search for tokens that show up in tables of contents.

Select a token like an instruction or a register, and "Plugins" -> "DROOG" -> "Search Reference Headings..." will show pages from PDFs available for the current architecture. Click an image to open the PDF at that page in your browser.

For unfamiliar architectures, bind the search to a hotkey. There's also a command to peek at table of contents headings in the status bar for quickly reviewing mnemonics.

See repo README for a screenshot.

I added the pymupdf dependency as "dependencies": "pymupdf>=1.19.0\n", which I think is right but isn't in docs/testable? If it only works in official channel, I'll change it.

Plugin Repository URL

Repo URL: https://github.com/amtal/droog

Real Release

psifertex commented 3 months ago

Dependencies are specified in requirements.txt (documented here). So you'll probably want to do a new release with that. It's actually a bug that the plugin.json dependencies field is overwritten by requirements.txt during generation of the master list regardless of whether the json contains it as well.

That particular bug is fixed in our new plugin/extension infrastructure which we'll be releasing soon.

amtal commented 3 months ago

Thank you for clear explanation. Pushed 1.0.4 with fixed deps, images, and plugin.json version.

psifertex commented 3 months ago

Thanks! Updated.