Monthly Archives: September 2014

SecureMessages

The idea was simple, I wanted to “store and share a message”, so that:
1. anyone with knowledge of two pieces of information can retrieve and decrypt the secret message
2. the password should not be stored on the database
3. the message should not be stored on the database
4. even if the database gets compromised one should not be able to decrypt the messages
5. save and retrieve quickly your message
6. not have to register to use the service

so we created “SecureMessages” an web based application, to exchange, securely, messages between any party.
Continue reading

Facebooktwitterredditpinterestlinkedinmailby feather

DEFCON22 Download Archives

Until the torrent archive file be available for DEFCON22 run the below bashfu to download all ppt/pdfs:

wget https://www.defcon.org/html/links/dc-archives/dc-22-archive.html --no-check-certificate | grep dc-22-presentations dc-22-archive.html | awk -F "href=\"" '{print $2}'| awk -F "\"" '{print $1}' | sed 's/\.\.//g' | sed 's/\/\//https:\/\/www.defcon.org/g' | xargs wget

Facebooktwitterredditpinterestlinkedinmailby feather