aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2020-03-09 20:17:26 +0000
committerbloodstalker <thabogre@gmail.com>2020-03-09 20:17:26 +0000
commit71b69bce18bae3863a8033d0d5228fc3dca203ab (patch)
tree9e6c8986d6a3879d18fce212c7eeb83721e59dc9 /README.md
parentreadme update [ci skip] (diff)
downloadmutator-71b69bce18bae3863a8033d0d5228fc3dca203ab.tar.gz
mutator-71b69bce18bae3863a8033d0d5228fc3dca203ab.zip
mostly bug fixes for the misra-c rule checker
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index d67342c..3f9756b 100644
--- a/README.md
+++ b/README.md
@@ -61,13 +61,16 @@ At its core, bruiser is a Lua REPL:
* Through bruiser's Xobj feature, you can pull in functions from object code, run them and get the result back.<br/>
* Through the ASMRewriter functionality you can manipulate the machine code and push it back in the object. For more detail you can look at the wiki or check out bruiser's README.md.<br/>
* Luarocks: You can use your Luarocks modules/libraries in bruiser too. Just make sure `luarocks` is in your path and bruiser will take care of the rest.<br/>
+You can read more about buiser [here](./bruiser/README.md)
### cgrep
cgrep is grep for c/c++ source files. simple as that.<br/>
cgrep is added here as a submodule for more exposure. You can find the main repo [here](https://github.com/bloodstalker/cgrep).<br/>
+You can read more about cgrep [here](./cgrep/README.md)
### obfuscator
obfuscator is a C/C++ source code obfuscator.<br/>
+You can read more about obfuscator [here](./obfuscator/README.md)
### delf
`delf` is a custom ELF dump script developed for bruiser. bruiser uses it to interact with ELF files.<br/>