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.
I'd personally love to see more videos on DLL analysis in this format. Explanations are perfect in length and detail, although I'd suggest possibly slowing down delivery a touch!
Thanks for leaving a comment! If you have any specific feedback on what sort of DLL analysis you would like to see, please let me know. And appreciate the note on slowing down!
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!
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
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.
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)
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?
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 (ua-cam.com/video/ZDXqrfG7hWc/v-deo.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.
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
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'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!
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.
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.
I'd personally love to see more videos on DLL analysis in this format. Explanations are perfect in length and detail, although I'd suggest possibly slowing down delivery a touch!
Thanks for leaving a comment! If you have any specific feedback on what sort of DLL analysis you would like to see, please let me know. And appreciate the note on slowing down!
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😀😁
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!
Great work Anuj! Subbed can't wait for more videos.
Thank you!
Thanks a lot for making free videos for the community. Technical details are really helpful. You are doing awesome!
Thank you for the encouragement!
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 :-)
Such a cool Explanation... Thanks Anuj !
Glad you liked it!
Great production value and cool demo
Thanks for watching!
Awesome content. Perfect explanation and very educative. Greetings from Brazil
Very much appreciate the feedback!
Nice presentation, Do more Debugging on Malwares , Thank You
Will do! Thanks for watching.
Great video, thank you for sharing.
Thanks for watching!
really underrated, great video
Appreciate it!
Awesome stuff. Thank you!
Thank you for watching, and for leaving a comment! Very happy to hear you found it helpful.
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!
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.
very underated channel! hope you get the attention you deserve this is high quality content
Thank you so much!
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)
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?
Awesome
Thanks!
thank you , this was helpful
Glad it helped!
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 (ua-cam.com/video/ZDXqrfG7hWc/v-deo.htmlsi=rCXhCYFbGlRJeuHD) - I cover it there. Thanks for watching!
Great work
Thank you so much 😀
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.
thanks for helpful!!!
Happy to help!
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 !
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!