Skip to content

Commit bc67e73

Browse files
committed
Added scratchabit and scratchablock
1 parent f211f94 commit bc67e73

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ Installers for the following tools are included:
4040
| binary | [ropper](https://github.com/sashs/Ropper) | Another gadget finder. | <!--tool--><!--test-->
4141
| binary | [rp++](https://github.com/0vercl0k/rp) | Another gadget finder. | <!--tool--><!--test-->
4242
| 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-->
4345
| binary | [shellnoob](https://github.com/reyammer/shellnoob) | Shellcode writing helper. | <!--tool--><!--test-->
4446
| binary | [shellsploit](https://github.com/b3mb4m/shellsploit-framework) | Shellcode development kit. | <!--tool--><!--test-->
4547
| binary | [snowman](https://github.com/yegord/snowman) | Cross-architecture decompiler. | <!--tool--><!--test-->

scratchabit/install

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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 ..

scratchablock/install

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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 ..

scratchablock/uninstall

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash -ex
2+
3+
ctf-tools-pip3 uninstall -y nose || true

0 commit comments

Comments
 (0)