mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
Add a steganography tool for embedding payloads within Python bytecode. (#166)
* Add a steganography tool for embedding payloads within Python bytecode. * build && create binary file && fix script typos
This commit is contained in:
parent
5978a34d4e
commit
412eea6c86
1 changed files with 12 additions and 0 deletions
12
stegosaurus/install
Normal file
12
stegosaurus/install
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
INST_DIR="$PWD"
|
||||
|
||||
git clone --depth 1 https://github.com/AngelKitty/stegosaurus.git
|
||||
|
||||
mkdir bin
|
||||
|
||||
cd bin
|
||||
|
||||
ln -s ../stegosaurus/stegosaurus .
|
||||
|
Loading…
Reference in a new issue