-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
26 lines (26 loc) · 2.77 KB
/
plugin.json
File metadata and controls
26 lines (26 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"pluginmetadataversion": 2,
"name": "LiSTT-BN",
"type": ["core", "ui", "architecture", "binaryview"],
"api": ["python3"],
"description": "Light-weight Static Taint Tracer - Static taint flow analysis for vulnerability detection based on the LiSTT paper (ARES 2014)",
"longdescription": "LiSTT-BN implements the lightweight static taint flow analysis technique from the paper 'An Investigation into Unsound-incomplete Yet Practical Result Yielding Static Taintflow Analysis' (Rawat et al., ARES 2014). It performs scalable taint analysis by:\n\n1. Computing call graph slices between input sources and vulnerable functions\n2. Performing intraprocedural dataflow analysis to create function summaries\n3. Propagating taint information interprocedurally to detect vulnerable flows\n\nThe tool is designed to be practical on large binaries by making controlled trade-offs in soundness and completeness.",
"license": {
"name": "MIT",
"text": "Copyright (c) 2025 Sanjay Rawat\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
},
"platforms": ["Darwin", "Linux", "Windows"],
"installinstructions": {
"Darwin": "Clone the repository into your Binary Ninja plugins folder:\n```\ncd ~/Library/Application\\ Support/Binary\\ Ninja/plugins\ngit clone https://github.com/tosanjay/Listt-BN.git\n```",
"Linux": "Clone the repository into your Binary Ninja plugins folder:\n```\ncd ~/.binaryninja/plugins\ngit clone https://github.com/tosanjay/Listt-BN.git\n```",
"Windows": "Clone the repository into your Binary Ninja plugins folder:\n```\ncd %APPDATA%\\Binary Ninja\\plugins\ngit clone https://github.com/tosanjay/Listt-BN.git\n```"
},
"dependencies": {},
"version": "1.0.0",
"author": "Sanjay Rawat",
"minimumbinaryninjaversion": 3000,
"python3": {
"minimum_version": "3.7",
"dependencies": {}
}
}