Skip to content

Commit

Permalink
Merge pull request #7 from AsherDLL/AsherDLL/release_1.1
Browse files Browse the repository at this point in the history
Asher dll/release_1.1
  • Loading branch information
AsherDLL authored Jan 28, 2023
2 parents 63bcd07 + aa45e17 commit 67aec1f
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 34 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# PCDump-bn
Author: **Asher Davila**
# Pseudo C Dump (v1.1)
Author: **Asher Davila L.**

_Binary Ninja plugin to dump the Pseudo C generated by Binja into a folder._

Expand All @@ -13,8 +13,12 @@ The motivation for writing this plugin is to extract the Pseudo C representation

PCDump-bn plugin is inspired by [atxsinn3r](https://github.com/atxsinn3r)'s Binja plugin, [BinjaHLILDump](https://github.com/atxsinn3r/BinjaHLILDump), which dumps the HLIL, and by [0xdea](https://github.com/0xdea) Ghidra's [plugin](https://github.com/0xdea/ghidra-scripts/blob/main/Haruspex.java), which dumps the pseudo-code generated by the Ghidra decompiler.


## Minimum Version
This plugin requires the following minimum version of Binary Ninja: 3.2.3814

This plugin requires the following minimum version of Binary Ninja:

* 3814

## Contributing

Expand All @@ -24,9 +28,6 @@ Any feedback and any help from external maintainers are appreciated.

* Submit a pull request for fixes and enhancements for this tool.


## License

This plugin is released under an [Apache 2.0 License](./LICENSE).


2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def dump_pseudo_c(bv: BinaryView, function=None) -> None:
'No directory was provided to save the decompiled Pseudo C')
return

dump = PseudoCDump(bv, 'Starting the Pseudo C Dump..', destination_path)
dump = PseudoCDump(bv, 'Starting the Pseudo C Dump...', destination_path)
dump.start()


Expand Down
54 changes: 27 additions & 27 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
{
"pluginmetadataversion": 2,
"name": "Pseudo C Dump",
"author": "Asher Davila L.",
"type": [
"helper"
],
"api": [
"python3"
],
"description": "Binary Ninja plugin to dump the Pseudo C generated by Binja into a folder.",
"longdescription": "This Binary Ninja plugin is written in Python 3 and it aims to assist with reverse engineering and vulnerability research. It dumps the Pseudo C representation of a binary, generated by Binja's decompiler, into a specified folder.",
"license": {
"name": "Apache-2.0",
"text": "Copyright 2022 Asher Davila L.\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n\thttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License."
},
"platforms": [
"Darwin",
"Windows",
"Linux"
],
"installinstructions": {
"Darwin": "",
"Windows": "",
"Linux": ""
},
"version": "1.0",
"minimumbinaryninjaversion": 3814
"pluginmetadataversion": 2,
"name": "Pseudo C Dump",
"author": "Asher Davila L.",
"type": [
"helper"
],
"api": [
"python3"
],
"description": "Binary Ninja plugin to dump the Pseudo C generated by Binja into a folder.",
"longdescription": "This Binary Ninja plugin is written in Python 3 and it aims to assist with reverse engineering and vulnerability research. It dumps the Pseudo C representation of a binary, generated by Binja's decompiler, into a specified folder.",
"license": {
"name": "Apache-2.0",
"text": "Copyright 2022 Asher Davila L.\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n\thttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License."
},
"platforms": [
"Darwin",
"Windows",
"Linux"
],
"installinstructions": {
"Darwin": "",
"Windows": "",
"Linux": ""
},
"version": "1.1",
"minimumbinaryninjaversion": 3814
}

0 comments on commit 67aec1f

Please sign in to comment.