I hereby claim:
- I am naliferopoulos on github.
- I am naliferopoulos (https://keybase.io/naliferopoulos) on keybase.
- I have a public key ASABLKPJrL0jTL3QtmiQB_t6rBlB22bSMnuKz3_UpLnRXgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#! /bin/bash | |
# Example: ./unravel.sh myrepo | |
REPO=$1 | |
BRANCH="master" | |
count=0 | |
pushd $REPO | |
for commit in $(git rev-list $BRANCH | tail -r) |
#!/bin/sh | |
# If this the first time this is run, please run the following command manually: | |
# docker run --name kali -u 0 --mount type=bind,source=$PWD,target=/host -it kalilinux/kali /bin/bash | |
docker rm kali 1>/dev/null 2>/dev/null | |
docker run --name kali -u 0 --mount type=bind,source=$PWD,target=/host -it infidel/kali /bin/bash | |
echo "Committing changes..." | |
docker commit kali infidel/kali:latest 1>/dev/null | |
docker stop kali 1>/dev/null |