added mutliple files

added docker_killall alias ; for killing all ontainers of an image
added flatpdf docker file ; container for secure pdf flattening
added flatpdf.sh ; script for pdf flattening using the flatpdf container
added showgm.sh ; opens google maps for exif geo location of picture
added showosm.sh ; opens open street map for exif geo location of picture
This commit is contained in:
Tobias Kessels
2019-04-18 22:38:13 +02:00
parent a68e2a3ff2
commit b5a17f11bd
6 changed files with 214 additions and 0 deletions

View File

@@ -24,3 +24,4 @@ alias remnux_cyberchef_stop="sudo docker stop cyberchefy"
alias remnux_jsdetox_start='sudo docker run --rm --name critsy -it --dns=192.168.130.1 -v ${workdir-`pwd`}:/home/nonroot/workdir -p 8443:8443 remnux/crits'
alias remnux_jsdetox_stop="sudo docker stop critsy"
alias drit='docker run -it --rm'
function docker_killall() { docker rm $(docker stop $(docker ps -a -q --filter ancestor="${1}" --format="{{.ID}}")) ; }