Skip to content

Commit

Permalink
doc: define the meaning of the tiers of badness (thanks to @wulfgarpro)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdea committed Jan 10, 2025
1 parent 1a60768 commit d61f886
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ a binary file. Auditors can backtrace from these candidate points to find pathwa
* Support for C/C++ binary targets compiled for any architecture implemented by IDA Pro.
* Bad API function call locations are printed to stdout and marked in the IDB.
* Known bad API functions are grouped in tiers of badness to help prioritize the audit work.
* [BAD 0] High priority - Functions that are generally considered insecure
* [BAD 1] Medium priority - Interesting functions that should be checked for insecure use cases.
* [BAD 2] Low priority - Code paths involving these functions should be carefully checked.
* The list of known bad API functions can be easily customized by editing `conf/rhabdomancer.toml`.

## Blog post
Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
//! * Support for C/C++ binary targets compiled for any architecture implemented by IDA Pro.
//! * Bad API function call locations are printed to stdout and marked in the IDB.
//! * Known bad API functions are grouped in tiers of badness to help prioritize the audit work.
//! * [BAD 0] High priority - Functions that are generally considered insecure
//! * [BAD 1] Medium priority - Interesting functions that should be checked for insecure use cases.
//! * [BAD 2] Low priority - Code paths involving these functions should be carefully checked.
//! * The list of known bad API functions can be easily customized by editing `conf/rhabdomancer.toml`.
//!
//! ## Blog post
Expand Down

0 comments on commit d61f886

Please sign in to comment.