Recently I have noticed that companies that use Google Suite have a fairly common misconfiguration that is making their internal groups public. In some cases it is just the name of the groups but in some extreme cases the content of the posts are public.
Testing for this misconfiguration on your domain is as easy as looking at:
https://groups.google.com/a/%yourdomain.tld%/forum/#!forumsearch/
Google has (not really clear) instructions here on how to lock down your groups so they are not public. I have notified as many of the domains that I can that they have a misconfiguration but I am not able to notify everyone and Google has seemed to file this under It's not a bug, it's a feature.
Author: jgamblin
I am a fan of Kali Linux and AWS so I love the fact that they have an official AMI. While spinning up a Kali instance in AWS is fairly easy, I had a long flight today so I wrote a script that will spin up a Kali instance in about 60 seconds.
The script does the following:
- Builds a security group that only allows SSH access from your current public IP.
- Writes a new SSH Key in
~/Documents/instantkali/ - Creates a
t2.mediumEC2 instance.
Here is the output: 
Here is the code:
https://gist.github.com/jgamblin/fff0bd2187f070390248c14cc9148062
Recently while working on a project I wanted to run OWSAP Dependency Check against a Github Organization to find any out of date frameworks but I couldn’t find an easy way to do it so I built a tool. Right now it will check Node and Ruby applications and put all the out of date frameworks in a single CSV.
As an example I ran the tool against the Netflix Open Source Project and here are the results from today. They have 35 out of date frameworks in all their public projects.
Here is what it looks like running:
Here is the code:
#!/bin/bash username="[email protected]" passwordtoken="get from here: https://github.com/settings/tokens" org="$1" repos=$(curl -u $username:$passwordtoken -s https://api.github.com/orgs/$org/repos?per_page=200 | jq -r .[].name | sort ) mkdir results for repo in $repos do #Find Default Branch defaultbranch=$(curl -u $username:$passwordtoken -s https://api.github.com/repos/$org/$repo | jq -r .default_branch) node=$(curl -u $username:$passwordtoken -s -o /dev/null -I -w "%{http_code}" https://raw.githubusercontent.com/$org/$repo/$defaultbranch/package.json) if [ $node -eq "200" ]; then printf "Testing %s. \n" "$repo" curl -s -u $username:$passwordtoken https://raw.githubusercontent.com/$org/$repo/$defaultbranch/package.json > package.json dependency-check --scan ./package.json --project "$repo" --format CSV --out results/$repo.csv printf "\n\n" else ruby=$(curl -u $username:$passwordtoken -s -o /dev/null -I -w "%{http_code}" https://raw.githubusercontent.com/$org/$repo/$defaultbranch/Gemfile.lock) if [ $ruby -eq "200" ]; then printf "Testing %s. \n" "$repo" curl -s -u $username:$passwordtoken https://raw.githubusercontent.com/$org/$repo/$defaultbranch/Gemfile.lock > Gemfile.lock dependency-check --scan ./Gemfile.lock ---project "$repo" --format CSV --out results/$repo.csv printf "\n\n" fi printf "%s is not a Node or Ruby Project. Unable to run dependency-check. \n\n" "$repo" fi done #Consulidate The Report cat results/*.csv > results/temp.csv awk '!x[$0]++' results/temp.csv > results/temp2.csv cut -d',' -f1-4,6- results/temp2.csv > githubvulns.csv rm results/*.csv
Some Quick Notes:
- There was a bug that was just fixed that stopped me from releasing this earlier.
- I will try to expand this to scan more types of code in the future.
- Let me know on twitter if you have any questions.
On Friday, January 6th 2017 I walked into the first Yoga class of my life at YogaSol as part of fulfilling a new years resolution.
I was in the best shape of my life. I was running, swimming and lifting weights multiple times a week. I weighed 165 pounds and was at 9% body fat. I was also really stressed at work, my blood pressure had moved into the hypertension range and I felt like my life was stuck in permanent decision paralysis.
Mark was my teacher that day for a “Gentle Flow” class that lasted 60 minutes and was one of the hardest things I have ever done. The flow made me feel childish (What hand is my left?) and weak (Downward Dog is a resting position?) but more importantly it showed me I couldn’t turn off my brain for 5 minutes for shavasana ( inhale- ‘Did I send that email?’ Exhale- ‘I should submit a CFP for Defcon this year.’).
I could also tell it would be one of the most fulfilling things I had ever done and stuck with it even when I didn’t want to. I now feel at home on the mat and practice yoga 4 or 5 times a week.
Here are a few things that have stuck with me this year:
Yoga taught me that if I am do not control of my life it controls me.
“Jerry, You didn’t breathe during that sun salutation.”
“…or that one.”
“…Are you trying to hold your breath?”
I really thought my teacher was being hard one me for no reason. I was doing what she asked, when she asked and how she asked. I soon came to understand that if I couldn’t pay mindful attention to the one thing that keeps me alive and control it I am not running my life. My life is running me.
Yoga taught me that more strength I have the less power I want.
I work in security and with that comes the need for power and control. We let this run our lives to the point that we have Brazilian Jiu Jitsu meet-ups at our biggest conferences (which I love).
Yoga quickly taught me that all the power in the world doesn’t matter if you don’t have strength. On Sunday’s I take an afternoon class with Lisa and she loves to say when we are in Downward Dog “OK Class, we will be resting here for 5 breaths”.
I can bench press 100%+ of my weight multiple times so I thought I should be able to stay in Downward Dog for 60 seconds with no problem. I couldn’t, the 60 year old woman next to me could… and probably could have for 15 minutes.
It took me a few months to start building that strength and at the same time letting go of some of that unneeded power,
Yoga has taught me to disconnect.
I get up at 0415 most mornings and start working and don’t really stop working until I go to bed. I answer emails on vacation. I write code on the weekends. I.ALWAYS.HAVE.MY.PHONE.
…except at Yoga class. It is the only time of the day that I am not sleeping that I don’t check my phone for an hour plus and the world doesn’t end. I need to get a lot better at this.
Yoga has taught me to slow down.
When I first started yoga I loved the high energy workouts and leaving yoga with the feeling of being totally exhausted. Then one day I took a yin class with Megan and realized that taking the time to slow down really makes me feel complete both mentally and physically.
Yoga has taught me the only way to improve your balance is to practice.
When I first I started yoga I could not do the tree pose at my ankle for 10 seconds without falling down. As I practiced over the last year I have gotten better but not perfect. As with most things in life you have to be willing to fail to get better.
If you ever get to LA check out YogaAqua.
Yoga has taught me to find comfort in discomfort.
If you want to be successful in life you can not stop when things get uncomfortable. If you can stop yourself from going into Balasana because your arms are tired when your teacher decides in the middle of the downward dog during the fifth sunsultion is the best time to give the complete oral history of a sanskrit word you didn’t hear you can also send that difficult email, ask for a raise and have that hard discussion.
I found Yoga at the perfect time in my life and I look forward to learning the lessons it will have for me in 2018.
Like most security professionals I am spending a large amount of time helping my company move securely to AWS.
Certificate management in AWS is done with AWS Certificate Manager and while they do offer *free* certificates, ACM generated certs are outside your direct control. You don’t get the keys which, at least for some things, should probably be a non-starter (granted, for plenty of other things it’s likely ¯\_(ツ)_/¯).
I also really like digicert and have been using them for TLS certificates for over 10 years but I could not find any automation already built for Digicert to AWS ACM so I spent some time this week and hacked a script together to do it.
Here is a link to the script (also embedded at the bottom of the post). On the host running the script you will need AWS CLI configured and a Digicert API Key. You also need to configure the first 15 lines of the script with your information.
To Run The Script:
./awasacm.sh your.fdqn.com
Script Output:
Here is what the script looks like running:

Here is the cert uploaded to ACM:

The script also saves all of the commands, keys and certs on the host running the script for auditing and backup:

Full Script:
https://gist.github.com/jgamblin/f8bd03d3743ba4f08f710d5e11c177c7
Closing:
I will be making improvements to this script as we implement it in production and will likely move it to a full GitHub repo soon. If you have any questions please reach out to me on twitter at @JGamblin.
Update: I have built a full Github repo here.
Last November I hacked together a script that continually monitored your network and sent a slack alert when something change. It worked but I was never 100% happy with it so I spent some time this weekend and rewrote it so that is hopefully more user friendly and functional. Some changes in this version includes the ability to set timeouts between scans, better output on the machine running the script, better logging and the start of a framework to add new tools.
All you need to run this project for yourself is a Ubuntu install with NMap, Prips, SlackCLI and a copy of the script.
Once running here are what a slack alert looks like:

Here is what the script looks like running:

Here is a copy of the script:
#!/bin/bash -u
#
# Requires NMAP, NDIFF, PRIPS and Slackcli
# https://candrholdings.github.io/slack-cli/
# NETOWORKS should be the list of networks you want to monitor.
# INTERVAL how many seconds to wait between scans
# SLACKTOKEN from here https://api.slack.com/web
#
NETWORKS="192.168.0.0/24"
TARGETS=$(for NETWORK in ${NETWORKS}; do prips $NETWORK; done)
INTERVAL="1800"
SLACKTOKEN="Get This From https://api.slack.com/web"
OPTIONS='-T4 --open --exclude-ports 25'
cd ~/scan
LAST_RUN_FILE='.lastrun'
while true; do
# If the last run file exists, we should only sleep for the time
# specified minus the time that's already elapsed.
if [ -e "${LAST_RUN_FILE}" ]; then
LAST_RUN_TS=$(date -r ${LAST_RUN_FILE} +%s)
NOW_TS=$(date +%s)
LAST_RUN_SECS=$(expr ${NOW_TS} - ${LAST_RUN_TS})
SLEEP=$(expr ${INTERVAL} - ${LAST_RUN_SECS})
if [ ${SLEEP} -gt 0 ]; then
UNTIL_SECS=$(expr ${NOW_TS} + ${SLEEP})
echo $(date) "- sleeping until" $(date --date="@${UNTIL_SECS}") "(${SLEEP}) seconds"
sleep ${SLEEP}
fi
fi
START_TIME=$(date +%s)
echo ''
echo '=================='
echo ''
DATE=`date +%Y-%m-%d_%H-%M-%S`
for TARGET in ${TARGETS}; do
CUR_LOG=scan-${TARGET/\//-}-${DATE}
PREV_LOG=scan-${TARGET/\//-}-prev
DIFF_LOG=scan-${TARGET/\//-}-diff
echo ''
echo $(date) "- starting ${TARGET}"
# Scan the target
nmap ${OPTIONS} ${TARGET} -oX ${CUR_LOG} >/dev/null
# If there's a previous log, diff it
if [ -e ${PREV_LOG} ]; then
# Exclude the Nmap version and current date - the date always changes
ndiff ${PREV_LOG} ${CUR_LOG} | egrep -v '^(\+|-)N' > ${DIFF_LOG}
if [ -s ${DIFF_LOG} ]; then
printf "Changes Detected, Sending to Slack."
nmap -sV ${TARGET} | grep open | grep -v "#" > openports.txt
slackcli -t $SLACKTOKEN -h nmap -m "Changes were detected on ${TARGET}. The following ports are now open: "
sleep 1
cat openports.txt | slackcli -t $SLACKTOKEN -h nmap -c
rm openports.txt
# Set the current nmap log file to reflect the last date changed
ln -sf ${CUR_LOG} ${PREV_LOG}
else
# No changes so remove our current log
printf "No Changes Detected."
rm ${CUR_LOG}
fi
rm ${DIFF_LOG}
else
# Create the previous scan log
ln -sf ${CUR_LOG} ${PREV_LOG}
fi
done
touch ${LAST_RUN_FILE}
END_TIME=$(date +%s)
echo
echo $(date) "- finished all targets in" $(expr ${END_TIME} - ${START_TIME}) "second(s)"
done
Some Quick Notes:
- You will want to run this in screen so that it runs continually.
- I excluded port 25 because it was reporting as “filtered” every other scan causing false alerts.
- Find NMAP options that you like. Here is a good guide.
- NDIFF really needs to be updated. Its output is ridiculously bad.
- Let me know on twitter if you have any questions.
I was working on a project recently and was asked if it was possible to stop users from setting common passwords. Using the pam_cracklib module and @DanielMiessler common passwords list it is as simple as these 3 commands:
sudo apt-get install libpam-cracklib -y sudo wget https://raw.githubusercontent.com/danielmiessler/SecLists/master/Passwords/10_million_password_list_top_1000000.txt /usr/share/dict/ -O /usr/share/dict/million.txt sudo create-cracklib-dict /usr/share/dict/million.txt

Seriously, that’s it.
Here is what a user will see when they attempt to use a password from the list: 
Mod_Security is the most widely known and used server based Web Application Firewall but I had not had a chance to play with it so I decided to take sometime this weekend to build a website (modsec.handsonhacking.org) to test it. Here is a small walk through on how I did it.
Base Server Install:
I used AWS Lightsail to build a webserver using Ubuntu 16.04, Apache2, LetsEncrypt , and this HTML5 Template.
Install and configure the website with these commands:
sudo apt update && sudo apt upgrade -y sudo apt install apache2 git -y sudo rm /var/www/html/index.html sudo git clone https://github.com/themefisher/Blue-Onepage-HTML5-Business-Template.git /var/www/html/ sudo add-apt-repository ppa:certbot/certbot sudo apt-get update sudo apt-get install python-certbot-apache sudo certbot
Mod_Security Install
Install Mod_Security with these commands:
sudo apt-get install libapache2-modsecurity sudo cp /etc/modsecurity/modsecurity.conf-recommended /etc/modsecurity/modsecurity.conf
Move from logging to blocking move with these commands:
sudo nano /etc/modsecurity/modsecurity.conf # Change SecRuleEngine DetectionOnly SecRuleEngine On
It should look like this:
Install the updated OWASP ModSecurity Core Rule Set:
sudo rm -rf /usr/share/modsecurity-crs sudo git clone https://github.com/SpiderLabs/owasp-modsecurity-crs.git /usr/share/modsecurity-crs
Enable them in the apache config file:
sudo nano /etc/apache2/mods-enabled/security2.conf
Add:
IncludeOptional /usr/share/modsecurity-crs/*.conf
IncludeOptional /usr/share/modsecurity-crs/rules/*.conf
It should look like this:
Move the OWASP rules from logging to blocking:
cd /usr/share/modsecurity-crs sudo cp crs-setup.conf.example crs-setup.conf sudo nano crs-setup.conf Comment Out: #SecDefaultAction "phase:1,log,auditlog,pass" #SecDefaultAction "phase:2,log,auditlog,pass" Uncomment: SecDefaultAction "phase:1,log,auditlog,deny,status:403" SecDefaultAction "phase:2,log,auditlog,deny,status:403"
It should look like this:

Next restart apache to enable mod_security:
sudo systemctl restart apache2
Testing
To test I used burp suite to scan modsec.handsonhacking.org to generate plenty of “bad traffic”.

Run this to see what is being blocked in real time:
sudo tail -f /var/log/apache2/modsec_audit.log
Next Steps
Now that I have mod_security running I need to find a better logging solution. So far I have quickly looked at waf-fle and auditconsole but they both look to be abandoned. It looks like there are people who are doing a lot with ELK but I have not found anything solid yet. I am really surprised there isn’t a ready made Dashboard but I will keep looking.
Warning:
I have spent all of four hours playing with this on non-production traffic. Please do not just install this in front of your website and then blame me when things break.
Closing:
Overall with the help of @infosecdad and @lojikil guiding me through some of the places where documentation is lacking it was fairly easy to get this setup and going. If you have any questions please reach out to me on twitter at @JGamblin.
One of the things that even the new MacOS beta is missing is MAC Address Randomization on boot. After spending a few hours working on it I put together this completely hack-y solution that uses Spoof and an automator Script saved as an application.
Here is how I configured it:
- Install Spoof
- Open Automator
- Select “Application”
- Add “Run Applescript”
- Copy & Paste This Script:
on run {input, parameters}
delay 4
tell application "Terminal"
activate
end tell
tell application "System Events"
delay 0.3
keystroke "sudo spoof randomize en0"
keystroke return
delay 0.5
keystroke "#SADLYYOURPASSWORDHERE"
keystroke return
delay 5
end tell
tell application "Terminal" to quit
return input
end run
- Change “#SADLYYOURPASSWORDHERE” to your local password.
- Test & Save:
Overall this is a pretty simple solution. I dont love it because you have to save your local password in the script and I am looking for a way to change that but it looks like to change the MAC address you have to be root. I will update this post if I figure out a way to remove the password.
Security summer camp is about a week away so I spent some time this afternoon trying to figure out what talks and events I want to make sure I attend.
BSides Las Vegas:
A Day in the Life of a Product Security Incident Response Manager
From SOC to CSIRT
Hadoop Safari : Hunting For Vulnerabilities
Introduction to Reversing and Pwning
YARA-as-a-Service (YaaS): Real-Time Serverless Malware Detection
Abusing Webhooks for Command and Control
BSides Las Vegas Full Schedule
Blackhat:
Breaking Electronic Door Locks Like You’re On CSI: Cyber
Free-Fall: Hacking Tesla From Wireless To Can Bus
Blackhat Full Sechedule
Defcon 25:
Meet the Feds (who care about security research)
There’s no place like 127.0.0.1 – Achieving reliable DNS rebinding in modern browsers
Wiping Out CSRF
Real-time RFID Cloning in the Field
Exploiting 0ld Mag-stripe information with New technology
Secret Tools: Learning About Government Surveillance Software You Can’t Ever See
Next-Generation Tor Onion Services
Using GPS Spoofing to Control Time
Cisco Catalyst Exploitation
Defcon Full Schedule


