I hereby claim:
- I am mike-bailey on github.
- I am bailey (https://keybase.io/bailey) on keybase.
- I have a public key whose fingerprint is 7AF0 E26F B17C 6261 DE0E A511 79EE 98B6 F961 4B96
To claim this, I am signing this object:
#!/bin/bash | |
# Change this to your location on your Gitlab server | |
REPO_LOCATION="/home/gitlab/repositories" | |
cp_repos() { | |
echo "Removing past repo data" | |
rm -rf /tmp/scanresults | |
echo "Creating directory structure" | |
mkdir -p /tmp/scanresults |
Master Key to Mason CC CTF: | |
Let me know if there are any omissions | |
Mexico: | |
Wonder how to decode this? | |
Q0N7SVNOVF9USElTX0ZVTn0= | |
Soln: Literally base64: | |
>CC{ISNT_THIS_FUN} |
#!/bin/bash | |
chmod -R 777 /var/www/html/hackable/uploads /var/www/html/external/phpids/0.6/lib/IDS/tmp/phpids_log.txt && \ | |
sed -i 's/allow_url_include = Off/allow_url_include = On/g' /etc/php5/apache2/php.ini && \ | |
sed -i "s/$_DVWA[ 'recaptcha_private_key' ] = ''/$_DVWA[ 'recaptcha_private_key' ] = 'TaQ185RFuWM'/g" /var/www/html/config/config.inc.php && \ | |
sed -i "s/$_DVWA[ 'recaptcha_public_key' ] = ''/$_DVWA[ 'recaptcha_public_key' ] = 'TaQ185RFuWM'/g" /var/www/html/config/config.inc.php && \ | |
sed -i 's/FileInfo/All/g' /etc/apache2/sites-available/000-default.conf && \ | |
sed -i 's/root/admin/g' /var/www/html/config/config.inc.php && \ | |
echo "sed -i \"s/p@ssw0rd/\$PASS/g\" /var/www/html/config/config.inc.php" >> /create_mysql_admin_user.sh && \ | |
echo 'session.save_path = "/tmp"' >> /etc/php5/apache2/php.ini |
### Keybase proof | |
I hereby claim: | |
* I am mike-bailey on github. | |
* I am bailey (https://keybase.io/bailey) on keybase. | |
* I have a public key ASD1iDP79m7mZXigiyFK-DcCJAkywp8vcVCRqO_kuez8dQo | |
To claim this, I am signing this object: |
I hereby claim:
To claim this, I am signing this object:
cat /etc/lightdm/lightdm.conf | |
if [ $?==0 ]; then | |
cat /etc/lightdm/lightdm.conf | grep -v allow-guest > /etc/lightdm/lightdm.conf | |
echo "allow-guest=false" >> /etc/lightdm/lightdm.conf | |
fi |
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import subprocess | |
__all__ = ["transform"] | |
__version__ = '0.3' | |
__author__ = 'Christoph Burgmer <[email protected]>' | |
__url__ = 'http://github.com/cburgmer/upsidedown' |