Reversing Malware How is APT 29 Successful w/ this Phishing Tech and BRc4 (Brute Ratel) opsec fails?
00:00 - Introduction, talking about why I think APT-29 successfully phishing is funny
01:10 - Unit42's blog post talking about how the phishing document worked
02:15 - Going to google to show APT29 doing the lnk file in a zip since atleast 2016, Mandiant post.
03:40 - Talking about why phishers put executables or things to click on in zip/iso/compressed folders
04:50 - Talking about why they may use DLL Side Loading to execute the shellcode
06:25 - Showing what the user see's when they open the iso file
07:48 - Talking about why we are starting with shellcode instead of a weaponized document and why red teams like shellcode
09:00 - Using MSFVenom to generate a malicious executable with custom shellcode from BRc4
10:15 - Opening the executable with x64dbg, so we can extract a program from memory. This is great for when the shellcode is obfuscated through like shikata ga nai
11:00 - Setting a breakpoint on LdrLoadDll, showing the memory map is empty
12:15 - Running the program, examining memory on LdrLoadDll breakpoint. Showing a weird Execute-Read Permission, which initially was Read-write (screwed up initially explaining it)
13:10 - The E_MAGIC (MZ Header) is nulled out, talking about why the brute ratel may do that
14:20 - Dumping the memory to a file, copying it to linux where i have ida
15:30 - Using hexedit to set the first two bits to MZ, so ida recognizes it as an executable
16:50 - Talking about ordinal loading
18:05 - Showing the applicaiton uses ror13 hashes to call functions to avoid strings. Using google to find what the hash goes to
20:20 - The coffee string is weird, going into it
21:10 - Looking at a function that looks like it sends strings to the teamserver
22:45 - Showing similarities of the coff loader from trusted sec
24:00 - Converting another ror13 hash in badger to a function
25:25 - Having ida show all strings
25:50 - Looking at the AMSI Patch thing
26:35 - Stumbling across a static encryption key
29:00 - Looking at a likely PSExec functional
Watch on YouTube ↗
(saves to browser)
Sign in to unlock AI tutor explanation · ⚡30
Playlist
Uploads from IppSec · IppSec · 0 of 60
← Previous
Next →
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
HHC2016 - Analytics
IppSec
HackTheBox - October
IppSec
HackTheBox - Arctic
IppSec
HackTheBox - Brainfuck
IppSec
HackTheBox - Bank
IppSec
HackTheBox - Joker
IppSec
HackTheBox - Lazy
IppSec
Camp CTF 2015 - Bitterman
IppSec
HackTheBox - Devel
IppSec
Reversing Malicious Office Document (Macro) Emotet(?)
IppSec
HackTheBox - Granny and Grandpa
IppSec
HackTheBox - Pivoting Update: Granny and Grandpa
IppSec
HackTheBox - Optimum
IppSec
HackTheBox - Charon
IppSec
HackTheBox - Sneaky
IppSec
HackTheBox - Holiday
IppSec
HackTheBox - Europa
IppSec
Introduction to tmux
IppSec
HackTheBox - Blocky
IppSec
HackTheBox - Nineveh
IppSec
HackTheBox - Jail
IppSec
HackTheBox - Blue
IppSec
HackTheBox - Calamity
IppSec
HackTheBox - Shrek
IppSec
HackTheBox - Mirai
IppSec
HackTheBox - Shocker
IppSec
HackTheBox - Mantis
IppSec
HackTheBox - Node
IppSec
HackTheBox - Kotarak
IppSec
HackTheBox - Enterprise
IppSec
HackTheBox - Sense
IppSec
HackTheBox - Minion
IppSec
VulnHub - Sokar
IppSec
VulnHub - Pinkys Palace v2
IppSec
HackTheBox - Inception
IppSec
Vulnhub - Trollcave 1.2
IppSec
HackTheBox - Ariekei
IppSec
HackTheBox - Flux Capacitor
IppSec
HackTheBox - Jeeves
IppSec
HackTheBox - Tally
IppSec
HackTheBox - CrimeStoppers
IppSec
HackTheBox - Fulcrum
IppSec
HackTheBox - Chatterbox
IppSec
HackTheBox - Falafel
IppSec
How To Create Empire Modules
IppSec
HackTheBox - Nightmare
IppSec
HackTheBox - Nightmarev2 - Speed Run/Unintended Solutions
IppSec
HackTheBox - Bart
IppSec
HackTheBox - Aragog
IppSec
HackTheBox - Valentine
IppSec
HackTheBox - Silo
IppSec
HackTheBox - Rabbit
IppSec
HackTheBox - Celestial
IppSec
HackTheBox - Stratosphere
IppSec
HackTheBox - Poison
IppSec
HackTheBox - Canape
IppSec
HackTheBox - Olympus
IppSec
HackTheBox - Sunday
IppSec
HackTheBox - Fighter
IppSec
HackTheBox - Bounty
IppSec
Related AI Lessons
⚡
⚡
⚡
⚡
A Systems-Theory Framework for Managing Burnout in Cybersecurity Teams
Hackernoon
JWKS Is the Part of OAuth Nobody Explains Until Production Breaks
Medium · Cybersecurity
HTB Path — AI Defense Walkthrough
Medium · Cybersecurity
I Passed the OSCP on My First Attempt - My Study Plan
Medium · Cybersecurity
Chapters (24)
Introduction, talking about why I think APT-29 successfully phishing is funny
1:10
Unit42's blog post talking about how the phishing document worked
2:15
Going to google to show APT29 doing the lnk file in a zip since atleast 2016,
3:40
Talking about why phishers put executables or things to click on in zip/iso/co
4:50
Talking about why they may use DLL Side Loading to execute the shellcode
6:25
Showing what the user see's when they open the iso file
7:48
Talking about why we are starting with shellcode instead of a weaponized docum
9:00
Using MSFVenom to generate a malicious executable with custom shellcode from B
10:15
Opening the executable with x64dbg, so we can extract a program from memory. T
11:00
Setting a breakpoint on LdrLoadDll, showing the memory map is empty
12:15
Running the program, examining memory on LdrLoadDll breakpoint. Showing a wei
13:10
The E_MAGIC (MZ Header) is nulled out, talking about why the brute ratel may d
14:20
Dumping the memory to a file, copying it to linux where i have ida
15:30
Using hexedit to set the first two bits to MZ, so ida recognizes it as an exec
16:50
Talking about ordinal loading
18:05
Showing the applicaiton uses ror13 hashes to call functions to avoid strings.
20:20
The coffee string is weird, going into it
21:10
Looking at a function that looks like it sends strings to the teamserver
22:45
Showing similarities of the coff loader from trusted sec
24:00
Converting another ror13 hash in badger to a function
25:25
Having ida show all strings
25:50
Looking at the AMSI Patch thing
26:35
Stumbling across a static encryption key
29:00
Looking at a likely PSExec functional
🎓
Tutor Explanation
DeepCamp AI