aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-06-24 06:16:22 +0000
committerbloodstalker <thabogre@gmail.com>2018-06-24 06:16:22 +0000
commit045e4e775c5d0ee2e7fd489cc3c236861fa5f004 (patch)
tree17a24b4f1d29e48f7c5b6db28927700d4e3bf186 /README.md
parentfixes #43. the auto-gen source files by luatablegen dont look like source fil... (diff)
downloadmutator-045e4e775c5d0ee2e7fd489cc3c236861fa5f004.tar.gz
mutator-045e4e775c5d0ee2e7fd489cc3c236861fa5f004.zip
fixes 42, fixes 44
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 12 insertions, 3 deletions
diff --git a/README.md b/README.md
index d61d0bb..87ac1df 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,9 @@
- [Overview](#overview)
- [bruiser](#bruiser)
- - [load.py](#load.py)
+ - [delf](#delf)
+ - [dwasm](#dwasm)
+ - [luatablegen](#luatablegen)
- [obfuscator](#obfuscator)
- [m0](#m0)
- [Safercpp](#safercpp)
@@ -57,10 +59,17 @@ Essentially bruiser is a Lua REPL plus:
* 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/>
-### load.py
-`load.py` is a custom ELF dump script developed for bruiser. bruiser uses it to interact with ELF files.<br/>
+### delf
+`delf` is a custom ELF dump script developed for bruiser. bruiser uses it to interact with ELF files.<br/>
You can also use the script as a standalone to dump info on the ELF file to stdout.<br/>
+### dwasm
+'dwasm' is a custom WASM dump script. bruiser uses it to interact with WASM object files.<br/>
+The script is also usable in an standalone manner.<br/>
+
+### luatablegen
+`luatablegen` is a python script that takes a json file including the details of a C structure, and generates C source and header files, a lua file including some convinience fields for the lua table and a markdown file including a summary of the table fields and their expected arg types and return types.<br/>
+
### obfuscator
Is a C/C++ source code obfuscator.<br/>