Today I took the step to migrate away from the Medium platorm and revert back to a Hugo and AWS setup.
Over the past few years I have been blogging (fairly infrequently) on the platform and was mainly attracted to getting paid per post behind their paywall.
However more recently I’ve came to realise I don’t really write content to get paid $3.99 per month (Max i’ve been paid is $50 for an article, then it drops to pennies).
Feb 6, 2022 - 2 min read
There are a plethora of reasons as to why you may want to have a custom written shellcode runner, Whether that be to Avoid Detection or Aid in Portability there are also a plethora of ways and languages to write one in from C all the way down to PowerShell.
Today i’m going to show you how to use native Golang functions to use the Windows API to execute a Meterpreter Shell.
In the good ol’ days to write a credential sniffer you had to spend alot of time learning C and libpcap this was extremely time consuming and no one really wants to go through that.
So today we have GoLang, the statically typed language from google, specifically the gopacket library from google.
Gopacket is a library that introduces packet filtering and capturing to go. It comes with C Bindings for libpcap, C Bindings for pfring, afpacket C Bindings and tcpassembly.
There comes a point in every developer’s life where XML data is painfully unavoidable to work with. RSS Feeds try to make this easier but everyone prefers good ol’ JSON, unless you are a sadist.
In Golang we can attack this in a number of ways like using an XML to JSON Library, but why not use the Go standard libraries and save some vendoring issues.
Building our own XML to JSON function I was recently working on something that required a Medium RSS feed published to a website and thought why not use a GoLang function running on OpenFaaS to accomplish this.