Skip to main content

Welcome to Mark Baggett - In Depth Defense

I am the course Author of SANS SEC573 Automating Information Security with Python. Check back frequently for updated tools and articles related to course material.




Sans Shirt... Is that it?

So I got this black shirt at sans with a bunch of Hex on the back. I've tried stuffing it in various drawers and corners of my closet. At least once I was able to cause a hamper overflow. I began to wonder if I had been 0wn3d. Decoding the hex I get what is below. Is there more to it?

E..#....@.V..........5....W;.............www.sans.org..............X..A..jThe trustd source for usted source)for information security training acd research. www.giac.org A GIAC certification is your assurance the student has `astered the sans coureware.

Here is the hex.

45 00 01 23 0D E8 00 00 40 11 56 B9 0A 00 01 01 0A 00 01 02 00 35 07 C0 00 E1 57 3B 00 02 89
80 00 01 00 01 00 00 00 03 03 77 77 77 04 73 61 6E 73 03 6F 72 67 00 00 01 00 01 C0 0C 00 01
00 01 00 00 02 58 00 04 41 AD DA 6A 54 68 65 20 74 72 75 73 74 64 20 73 6F 75 72 63 65 20 66
6F 72 20 75 73 74 65 64 20 73 6F 75 72 63 65 29 66 6F 72 20 69 6E 66 6F 72 6D 61 74 69 6F 6E
20 73 65 63 75 72 69 74 79 20 74 72 61 69 6E 69 6E 67 20 61 63 64 20 72 65 73 65 61 72 63 68
2E 20 77 77 77 2E 67 69 61 63 2E 6F 72 67 20 41 20 47 49 41 43 20 63 65 72 74 69 66 69 63 61
74 69 6F 6E 20 69 73 20 79 6F 75 72 20 61 73 73 75 72 61 6E 63 65 20 74 68 65 20 73 74 75 64
65 6E 74 20 68 61 73 20 60 61 73 74 65 72 65 64 20 74 68 65 20 73 61 6E 73 20 63 6F 75 72 65
77 61 72 65 2E

Popular posts from this blog

Awesome Keyboard Tricks - Clevo/Sager Backlight control from Powershell

I'm back on Windows.   After 8 years on a Macintosh I just couldn't go another day with ONLY 16GB of RAM.   I priced it out and for the cost of a top of the line MacBook I could get a tricked out PC with 32GB of ram and 2.5 TB or hard drive space (1.5 of it being SSD).   So I made the switch.  To get a top performing laptop I ended up buying a gaming machine from xoticpc.com.   The model is Sager NP9752 ( Clevo P750ZM ).    I have to say I like it quite a bit.    One of the features I was curious about was the "Programmable backlit keyboard".   With it you can set your keyboard backlight to various colors and light movement patterns.    Now, when I hear "programmable" I think APIs.   I was a little disappointed to find out there weren't any documented APIs that I could use to control the keyboard.    Your only choice is to use their built in tool to configure the lights on the keyboard.   That stinks.  I want to be able to change key colors automatically

New tool Freq_sort.py

I read an article on Fireeye's website the other day where they used Machine Learning to eliminate a lot of the noise that comes out of tools like strings.  It's pretty interesting and looks like it would save me some time when looking through malware. https://www.fireeye.com/blog/threat-research/2019/05/learning-to-rank-strings-output-for-speedier-malware-analysis.html I wondered how effective freq.py scores would be in helping to eliminate the noise.  45 minutes and 29 lines of Python code later I have something that looks like it works.  Check out freq_sort.py. Before freq_sort.py here is the output of strings on a piece of malware: student@573:~/freq$ strings -n 6 malware.exe | head -n 20 !This program cannot be run in DOS mode. e!Rich `.rdata @.data .pdata @.gfids @.rsrc @.reloc \$0u"H L$ SVWH K SVWH |$ H;_ <bt%<xt!<Zt |$ AVH l$ VWAV L$ SUVWH UVWATAUAVAWH 0A_A^A]A\_^] UVWATAUAVAWH @A_A^A]A\_^] After freq_sort.py the useful stings quickly bubble to t

Security Onion getting the most from Freq.py and Domain States

My talk at Security Onion conference has been posted and is available for viewing here.

SRUM-DUMP and SRUM_DUMP_CSV Ported to Python 3

SRUM_DUMP and SRUM_DUMP_CSV have been ported to Python3 and are available for download from the PYTHON3 branch of my github page. https://github.com/MarkBaggett/srum-dump/tree/python3 In moving to Python3 I also updated the modules that I depend upon to parse and create XLSX files and access the ESE database that contains the SRUM data.  I hope that this will fix the issue that some users have experienced with SRUDB.dat files that create very large spreadsheets.  If it does not please let me know and continue to use SRUM_DUMP_CSV.EXE to avoid the XLSX problem. In moving to Python3 you will find the process to be faster. If you would like to run the tools from source instructions for doing so are in the README on the github page.

Reverse Pivots with Metasploit - How NOT to make the lightbulb

In a penetration test your target is PII kept on a corporate file server which I will call Victim2. You are outside the firewall but have gained access to an internal host, Victim1, when a user opened your word document with an embeeded Meterpreter payload . The stager embedded in the word document made a REVERSE_TCP connection to your machine which uploaded metsrv.dll to the victim. The machine you have access to (Victim1) has unfiltered access to your target (Victim2). Victim2 is vulnerable to ms08_067_netapi. Victim2 however, has NO access to the internet at all. Were it not for the strict egress firewall rules controlling Victim2 you could have used the ROUTE command to pivot your attack through your meterpreter session on Victim1 to Victim2, and have Victim2 send you a shell directly like this... Your IP = 192.168.1.1 Victim1 = 10.4.4.4 Victim2 = 10.5.5.5 Background session 1? [y/N] y msf exploit(ms08_067_netapi) > route add 10.5.5.5 255.255.255.255 1 msf exploit(m