File tree 4 files changed +27
-0
lines changed
4 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ Installers for the following tools are included:
40
40
| binary | [ ropper] ( https://github.com/sashs/Ropper ) | Another gadget finder. | <!-- tool--> <!-- test-->
41
41
| binary | [ rp++] ( https://github.com/0vercl0k/rp ) | Another gadget finder. | <!-- tool--> <!-- test-->
42
42
| binary | [ rr] ( http://rr-project.org ) | Record and Replay Debugging Framework | <!-- tool--> <!-- test-->
43
+ | binary | [ scratchabit] ( https://github.com/pfalcon/ScratchABit ) | Easily retargetable and hackable interactive disassembler | <!-- tool--> <!-- test-->
44
+ | binary | [ scratchablock] ( https://github.com/pfalcon/ScratchABlock ) | Yet another crippled decompiler project | <!-- tool--> <!-- test-->
43
45
| binary | [ shellnoob] ( https://github.com/reyammer/shellnoob ) | Shellcode writing helper. | <!-- tool--> <!-- test-->
44
46
| binary | [ shellsploit] ( https://github.com/b3mb4m/shellsploit-framework ) | Shellcode development kit. | <!-- tool--> <!-- test-->
45
47
| binary | [ snowman] ( https://github.com/yegord/snowman ) | Cross-architecture decompiler. | <!-- tool--> <!-- test-->
Original file line number Diff line number Diff line change
1
+ #! /bin/bash -ex
2
+
3
+ git clone --recursive https://github.com/pfalcon/ScratchABit
4
+
5
+ mkdir -p bin
6
+ cd bin
7
+ ln -s ../ScratchABit/ScratchABit.py ./scratchabit.py
8
+ cd ..
Original file line number Diff line number Diff line change
1
+ #! /bin/bash -ex
2
+
3
+ ctf-tools-pip3 install -y nose
4
+ git clone --recursive https://github.com/pfalcon/ScratchABlock
5
+ source ctf-tools-venv-activate3
6
+
7
+ mkdir -p bin
8
+ cd bin
9
+ for i in ../ScratchABlock/* .py
10
+ do
11
+ ln -s $i ./scratchablock-$( basename $i )
12
+ done
13
+ ln -s ../ScratchABlock/run_tests ./scratchablock-runtests
14
+ cd ..
Original file line number Diff line number Diff line change
1
+ #! /bin/bash -ex
2
+
3
+ ctf-tools-pip3 uninstall -y nose || true
You can’t perform that action at this time.
0 commit comments