I'm with the other guy who said the video length/format is great. Sometimes I just want a concise rundown as a refresher or to get new ideas from instead of a movie-length video- although there is a place for deep dives like that. Thanks!
This was fantastic. Big fan of these videos and the length/format. Would love a video on obtaining bad samples, and actually the process of gathering new malicious files that still need to be analyzed.
Wow! Super cool to have such a robust break-down in terms of the how and why. I'm not going to lie, I didn't follow it all, but you did a great job of making all of these pieces of tech I haven't been able to touch yet seem exciting and more approachable (which is pretty cool since I'm just a help-desk tech 😅). Looking forward to see how your channel blows up over the next year or so!
Love to see frequent upload of videos. Thanks for sharing another valuable technique. Could please have a video on analyzing sys files in your futures. Thanks in advance!
Cool Channel, and nice vid about ms.dll's. For me, splitting Excel formats based on date really helped, since Excel is industry default since forever. I also use it to find maximums, like IE11.0.04 for last IE 32-bit. These VM's need maintenance you know.. This is handy when digging deeper, specifically if VBA (XLL-add-ins, odbc, ado, activex) or Powershell is involved.. Programatically, 64-bit time_t and 32-bit tm_year are important in calcs. btw.. "Behaviourial analysis" is too functional for a technical task. To kickstart dynamic analysing the public blobs, with Microsoft Primitive Provider using * SHA256, HASH, AES and * ObjectLength * KeyDataBlob * clean up the output, ie. with ssconvert (gnumeric)
This will depend on how it’s packed, but setting a breakpoint on VirtualAlloc often leads to progress. If you have an example in mind, I’m happy to take a look and discuss in a video!
Hey there. Great Insights man, thankyou for this video. I had a question though, What to do if there are 0 export functions present in the dll file. How to analyse it then? Like the score on VT shows that its malicious but then without running it how can u determine. I'm asking specifically for Dynamic Analysis not the Reverse Engineering part
I am assuming while looking at the code in a dissassembler you either stumble across the MZ header? I guess you are trying to keep the videos short and sweet but it would have been nice to see your approach of discovering that. The whole time in the video i was asking. How did he find that?😅
Hi, sorry for the delay in responding. Great point, I could have done a better job of explaining this observation. The fastest way to identify the function that checks for an MZ header is Mandiant's capa tool (github.com/mandiant/capa). If you aren't familiar with this tool, check out my latest video on the FBI's Qakbot takedown (ruclips.net/video/ZDXqrfG7hWc/видео.htmlsi=rCXhCYFbGlRJeuHD) - I cover it there. Thanks for watching!
is it possible, to inspect a dll when and where exactly its injected and what functions it has or will hooked? im n absoult beginner so i not rly understand assembly, i guess if u understand it everything might be opensource ?
Hi there, thanks for stopping by! Yes you can debug a DLL to examine when and how it injects or hooks code. Check out my API unhooking video for some information on that last one. And disassembling a program definitely give you insight into how it works. A good decompiler can approximate source code, but this can be challenging, especially if there is obfuscation involved.
Can dll malware infect your computer even, if you are not clicking to .exe? Without dll being imported to .exe just export itself like could dll without execution .exe only download dll file do rat, redline stealer, rootkits or other malwares? Someone experienced this?
Hey there. Great Insights man, thankyou for this video. I had a question though, What to do if there are 0 export functions present in the dll file. How to analyse it then? Like the score on VT shows that its malicious but then without running it how can u determine. I'm asking specifically for Dynamic Analysis not the Reverse Engineering part
Hi there, my apologies for the delay in responding. If there are zero export functions, I would expect the malicious code to be launched from DllMain. Behaviorally you should be able to launch it with rundll32 without specifying an entry point.
Please don't stop uploading, the quality and video knowledge is very good. I even recommended this to my friends.
Really appreciate you recommending my content to others! More to come.
I usually find malware vids very boring and hard to follow but the way you explain and present everything is perfect
Thank you for that feedback. Comments like this push me to release more videos.
I'm with the other guy who said the video length/format is great. Sometimes I just want a concise rundown as a refresher or to get new ideas from instead of a movie-length video- although there is a place for deep dives like that. Thanks!
Thanks for watching!
This was fantastic. Big fan of these videos and the length/format. Would love a video on obtaining bad samples, and actually the process of gathering new malicious files that still need to be analyzed.
This is the best explanation I have seen for a topic that stumps alot of junior reversers. Great video.
Wow, thanks!
I usually don't comment on a video unless I need to, but you did great work in this video, and it is very valuable. Please make more videos!
Thanks so much, that means a lot!
Thanks a lot for making free videos for the community. Technical details are really helpful. You are doing awesome!
Thank you for the encouragement!
Great work Anuj! Subbed can't wait for more videos.
Thank you!
Wow! Super cool to have such a robust break-down in terms of the how and why. I'm not going to lie, I didn't follow it all, but you did a great job of making all of these pieces of tech I haven't been able to touch yet seem exciting and more approachable (which is pretty cool since I'm just a help-desk tech 😅). Looking forward to see how your channel blows up over the next year or so!
Thanks for taking the time to comment, glad to hear you’re enjoying the uploads!
Love to see frequent upload of videos. Thanks for sharing another valuable technique. Could please have a video on analyzing sys files in your futures. Thanks in advance!
That’s a great idea, thank you!
@@sonianuj Thanks for your comment. Will be waiting for it eagerly😀😁
I started learning not long ago, but your explanation is so good I was able to keep track and understand of what you were doing.
Wonderful to hear, thank you!
PLEASE DO MORE! THIS WAS SO GOOD
Working on it :-)
Great production value and cool demo
Thanks for watching!
This was great. Excellent info.
Glad you enjoyed it!
Such a cool Explanation... Thanks Anuj !
Glad you liked it!
Great video, thank you for sharing.
Thanks for watching!
Nice presentation, Do more Debugging on Malwares , Thank You
Will do! Thanks for watching.
Cool Channel, and nice vid about ms.dll's.
For me, splitting Excel formats based on date really helped, since Excel is industry default since forever. I also use it to find maximums, like IE11.0.04 for last IE 32-bit. These VM's need maintenance you know..
This is handy when digging deeper, specifically if VBA (XLL-add-ins, odbc, ado, activex) or Powershell is involved.. Programatically, 64-bit time_t and 32-bit tm_year are important in calcs.
btw.. "Behaviourial analysis" is too functional for a technical task.
To kickstart dynamic analysing the public blobs, with
Microsoft Primitive Provider
using
* SHA256, HASH, AES
and
* ObjectLength
* KeyDataBlob
* clean up the output, ie. with ssconvert (gnumeric)
Awesome
Thanks!
Great work
Thank you so much 😀
thank you , this was helpful
Glad it helped!
very underated channel! hope you get the attention you deserve this is high quality content
Thank you so much!
Hi Anuj, great presentation. How we can handle DLL which is packed and no information is available on internet.
This will depend on how it’s packed, but setting a breakpoint on VirtualAlloc often leads to progress. If you have an example in mind, I’m happy to take a look and discuss in a video!
thanks for helpful!!!
Happy to help!
Hey there. Great Insights man, thankyou for this video. I had a question though, What to do if there are 0 export functions present in the dll file. How to analyse it then? Like the score on VT shows that its malicious but then without running it how can u determine. I'm asking specifically for Dynamic Analysis not the Reverse Engineering part
Even with no exports, code at the entry point of a DLL will still be executed - so I would start debugging there. Hope that helps!
I am assuming while looking at the code in a dissassembler you either stumble across the MZ header? I guess you are trying to keep the videos short and sweet but it would have been nice to see your approach of discovering that. The whole time in the video i was asking. How did he find that?😅
Hi, sorry for the delay in responding. Great point, I could have done a better job of explaining this observation. The fastest way to identify the function that checks for an MZ header is Mandiant's capa tool (github.com/mandiant/capa). If you aren't familiar with this tool, check out my latest video on the FBI's Qakbot takedown (ruclips.net/video/ZDXqrfG7hWc/видео.htmlsi=rCXhCYFbGlRJeuHD) - I cover it there. Thanks for watching!
is it possible, to inspect a dll when and where exactly its injected and what functions it has or will hooked? im n absoult beginner so i not rly understand assembly, i guess if u understand it everything might be opensource ?
Hi there, thanks for stopping by! Yes you can debug a DLL to examine when and how it injects or hooks code. Check out my API unhooking video for some information on that last one. And disassembling a program definitely give you insight into how it works. A good decompiler can approximate source code, but this can be challenging, especially if there is obfuscation involved.
@@sonianujGratefully thanks, Content like this are very important. I will for sure dive in this topics. Take Care !
It was great video.. Can you please debug dumped file as well? I tried to debug this payload but not getting much observations..
Hi there, thanks for watching. Perhaps I’ll debug the second stage in a later video thanks.
Can dll malware infect your computer even, if you are not clicking to .exe? Without dll being imported to .exe just export itself like could dll without execution .exe only download dll file do rat, redline stealer, rootkits or other malwares? Someone experienced this?
Is there to unpack rar/zip file with pw in ida pro/ghidra directly?
Hey there. Great Insights man, thankyou for this video. I had a question though, What to do if there are 0 export functions present in the dll file. How to analyse it then? Like the score on VT shows that its malicious but then without running it how can u determine. I'm asking specifically for Dynamic Analysis not the Reverse Engineering part
Hi there, my apologies for the delay in responding. If there are zero export functions, I would expect the malicious code to be launched from DllMain. Behaviorally you should be able to launch it with rundll32 without specifying an entry point.