aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser (follow)
Commit message (Collapse)AuthorAgeFilesLines
* faultreiber is a submodule now. it generates binary file format parsers in ↵bloodstalker2018-08-084-3/+176
| | | | C. the memory management side of faultreiber is not implemented yet since im on the fence on how to do it. faultreiber along with tablegen will completely automate the process of adding new file formats to bruiser.
* added new options to delfbloodstalker2018-07-292-2/+1
|
* updated the README with the mirror repo links for luatablegen, delf and dwasmbloodstalker2018-07-213-2/+41
|
* a fix for the luatablegen json file, added a new option to load.py, minor ↵bloodstalker2018-07-1912-30/+38
| | | | cosmetic changes
* fixing travisbloodstalker2018-06-241-1/+1
|
* fixes 42, fixes 44bloodstalker2018-06-2432-83/+109
|
* fixes #43. the auto-gen source files by luatablegen dont look like source ↵bloodstalker2018-06-1955-255/+59
| | | | files instead of headers. luatablegen also generates an excuse of a doc for all the table methods.
* fixbloodstalker2018-06-102-5/+13
|
* added the autogen files, should also fix travisbloodstalker2018-06-1056-0/+4506
|
* the codegen is working now. the generated codes will not be part of the repo ↵bloodstalker2018-06-097-47/+62
| | | | for the time being. they will be generated during the build process.
* fixes #40bloodstalker2018-06-043-13/+26
|
* fixed a bug with default.lua. added the blueprint for the wasm interface to ↵bloodstalker2018-06-018-33/+343
| | | | bruiser.
* added test files for the wasm linker. added two scripts to extra-toolsbloodstalker2018-05-287-8/+179
|
* load.py is now imported bt another python module, should cut down on startup ↵bloodstalker2018-05-251-0/+1030
| | | | time. added the WASM linking structures to dwasm. i can start working on the linker as soon as i get some tests.
* load.py is now imported bt another python module, should cut down on startup ↵bloodstalker2018-05-253-1014/+83
| | | | time. added the WASM linking structures to dwasm. i can start working on the linker as soon as i get some tests.
* wip:added a wasm backend. i need to setup an interface with the main c++ ↵bloodstalker2018-05-2014-83/+3590
| | | | code. added some commands to bruiser for managing xobj memories
* fixes #33. fixed #34. python interpreter should clean up after itself ↵bloodstalker2018-05-1817-363/+200
| | | | properly so maybe #32 is also sovled but i need more time to know. the stack usage for lua has been reduced so larger number of xobjs are fine now. general cleanup for executioner and bruiser. added a note regarding running obfuscators test. lua no longer needs libreadline to build. bfds test no longer needs libbfd to build.
* fixing travisbloodstalker2018-04-301-1/+1
|
* fixes #30. run make deepclean on bruiser. lua needs to be rebuilt. added a ↵bloodstalker2018-04-308-200/+302
| | | | new commandline option, --keepalive. drops to cli if you were running in non-cli after script finishes running.
* ramdump is herebloodstalker2018-04-287-44/+48
|
* relicensed everything excluding safercpp to GPL-3.0. fixes #31. now there is ↵bloodstalker2018-04-2722-78/+224
| | | | ramdump. i just need to write a luawrapper.
* finally updated the readmes. they make more sense now.bloodstalker2018-04-241-13/+10
|
* updated the readme, added a wiki entry, fixed the default.lua script which i ↵bloodstalker2018-04-234-11/+28
| | | | broke in the last commit
* two more options for load.py. also fixed the default lua script for bruiser. ↵bloodstalker2018-04-215-19/+39
| | | | now it works for everyone if luarocks is in path.
* fixed #29bloodstalker2018-04-154-16/+24
|
* added some more cli options to load.py. added a new test file for bruiser to ↵bloodstalker2018-04-086-5/+66
| | | | see how it fares against bigger files.
* run a deepclean on bruiser's makefile to rebuild the lua makefilebloodstalker2018-03-202-2/+2
|
* some fixesbloodstalker2018-03-1910-8/+115
|
* added a lua module for asmrewriter, will soon add docs. you can try the new ↵bloodstalker2018-03-127-31/+110
| | | | module by running asmtest.lua or demo2.lua did some cosmetic fixes to load bfd so it doesnt suck as hard when you get dumps
* the jmp table is working now. you get member set and get methods, and an ↵bloodstalker2018-03-047-61/+125
| | | | iterator. you can demo2 in the lua scripts folder for a test.
* wip-the lua syntax is not what i want to be yet and im having trouble with ↵bloodstalker2018-03-048-64/+214
| | | | the JMP_S_T pointers
* the skeletion code for the jump table struct is now workingbloodstalker2018-03-028-13/+41
|
* some fixes for the jump table lua modulebloodstalker2018-03-016-48/+63
|
* wip-the asm rewriter module plus the assembly jump table lua module ↵bloodstalker2018-03-0112-16/+672
| | | | implementation
* bruiser will now run a lua script before startup so now you can easily use ↵bloodstalker2018-02-245-13/+122
| | | | your lua rocks from inside bruiser. added a new demo using bruisers xobj module. added a new bruiser option for the default lua script to run prior to bruiser startup. updated the readme for bruiser.
* removed lua docs [ci skip]bloodstalker2018-02-2110-12405/+0
|
* added some elf stuff plus leb128 encode decode functionsbloodstalker2018-02-182-1/+2
|
* trying to implement the nested call and global object rewritersbloodstalker2018-02-177-45/+343
|
* travis fixbloodstalker2018-02-111-1/+1
|
* travis fixbloodstalker2018-02-112-3/+5
|
* 2 major bug fixed for bruiser, a lot of little improvements and bug fixed ↵bloodstalker2018-02-118-72/+95
| | | | here and there
* makefile update or they kinda do what they were supposed to dobloodstalker2018-02-011-8/+16
|
* removed capstone for the time beingbloodstalker2018-02-011-1/+1
|
* updatebloodstalker2018-02-017-191/+171
|
* fixed string type for xobjs, also xcall can now call functions by name as wellbloodstalker2018-01-265-19/+61
|
* fixed some issues with the way bruiser handled integers, added some initial ↵bloodstalker2018-01-224-14/+53
| | | | tests.
* xobj handling for int types and pointers is done.next is structs,unoins and ↵bloodstalker2018-01-216-41/+283
| | | | adding docs. you can try running demo1.lua under lua-scripts for a demo
* WIP.using libffi for calling xobjects now.bloodstalker2018-01-205-2/+142
|
* updatebloodstalker2018-01-206-16/+128
|
* updatebloodstalker2018-01-173-14/+74
|