- Details
- Written by Michael Bann
- Category: Blog
Quick tip of the hat to the Lets Encrypt folks. I just finished installing their SSL certificate! There were some unfortunate technical problems along the way that they will hopefully deal with. Once I get some time I'll walk you through how to set up your own Let's Encrypt certificate.
- Details
- Written by Michael Bann
- Category: CTF Writeups
Category: Reverse Engineering Points: 300 Solves: Description:
Random as F*!@
This challenge was a great example of the power of symbolic execution. Start as usual with determining what type of file it is:
$ file pseudorandom_bin
pseudorandom_bin: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=5a0f467ef94ee8fa770ecda91c4326f00b2c6c30, stripped
- Details
- Written by Michael Bann
- Category: CTF Writeups
Category: Stegano Points: 300 Solves 8 Description:
Description: A key is Hidden within this file, Find it and get the f**kin' flag
Attachment: 61b94d373df24a669390bf5cc31090ac
This particular steganography challenge covers a bunch of different techniques, which is why it was called Ultimate Steg. In solving this, I utilized my StegoDone tool extensively. Let's start by taking a look at the initial file we are given. Since it has no extension, lets use file to discover what it is:
- Details
- Written by Michael Bann
- Category: CTF Writeups
Category: Reverse Engineering Points: 100 Solves: Description:
ZorroPub
First off, lets see what type of file this is:
$ file zorro_bin
zorro_bin: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=5bd9436f341615c804471bb5aec37e426508a7af, stripped
- Details
- Written by Michael Bann
- Category: Tutorials
As a side interest, I've become curious about video and audio encoding. I've been looking into the many different flavors of encoding there are, and attempting to determine the best way forward. This is purely selfish as I have a collection of videos that are taking up too much space and I want to make them smaller, but also keep as much detail as possible.
Getting more to the point, my primary system is a Windows desktop with NVidia graphics card. While I was able to encode videos using Linux, the machine running Linux was either a Virtual Machine or a laptop. Either way, performance for encoding was not great. I wanted to not only get my much stronger desktop involved, but also utilize the graphics card. I was previously using HandBrake, which is a neat application. However, I wanted more control over what was happening, and also just get a bad vibe from that tool (and don't want it running on my primary system). One of the most well known and respected tools in this area is ffmpeg. If you haven't looked at it, I'd highly recommend reading their docs. Really cool stuff.