littleblackbox

This commit is contained in:
Yan 2015-05-07 20:06:53 -07:00
parent 1b799120a9
commit 999ff8efbe
3 changed files with 24 additions and 0 deletions

View file

@ -48,6 +48,7 @@ Installers for the following tools are included:
| forensics | testdisk | Testdisk and photorec for file recovery. |
| crypto | cribdrag | Interactive crib dragging tool (for crypto). |
| crypto | hashpump | A tool for performing hash length extension attaacks. |
| crypto | [littleblackbox](https://github.com/devttys0/littleblackbox) | Database of private SSL/SSH keys for embedded devices. |
| crypto | [hash-identifier](https://code.google.com/p/hash-identifier/source/checkout) | Simple hash algorithm identifier. |
| crypto | [python-paddingoracle](https://github.com/mwielgoszewski/python-paddingoracle) | XOR analysis tool. |
| crypto | xortool | XOR analysis tool. |

20
littleblackbox/install Executable file
View file

@ -0,0 +1,20 @@
#!/bin/bash -e
git clone https://github.com/devttys0/littleblackbox.git
INST_DIR=$PWD
cd littleblackbox/src
./configure --prefix=$INST_DIR
make -j $(nproc)
mkdir -p $INST_DIR/share/man/man1 $INST_DIR/bin
make -i install
cp lbb.db $INST_DIR
cd $INST_DIR/bin
mv littleblackbox littleblackbox.real
cat <<END > littleblackbox
#!/bin/bash
cd $INST_DIR
bin/littleblackbox.real "\$@"
END
chmod 755 littleblackbox

3
littleblackbox/install-root Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash -e
apt-get -y install libssl-dev libpcap-dev libsqlite3-dev