Sinisterly
WE NEED AN ASM SUBFORUM!!!!! - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: General (https://sinister.ly/Forum-General)
+--- Forum: Announcements (https://sinister.ly/Forum-Announcements)
+---- Forum: Suggestions (https://sinister.ly/Forum-Suggestions)
+----- Forum: Old Suggestions (https://sinister.ly/Forum-Old-Suggestions)
+----- Thread: WE NEED AN ASM SUBFORUM!!!!! (/Thread-WE-NEED-AN-ASM-SUBFORUM)

Pages: 1 2 3 4 5


RE: WE NEED AN ASM SUBFORUM!!!!! - Alan Turing - 05-03-2014

(05-03-2014, 01:59 AM)vegimite Wrote: Ahh, anyhow all the more reason to get one up so people can learn.

I'd like to see an ASM section, as well as a Perl section.


RE: WE NEED AN ASM SUBFORUM!!!!! - superMAUS - 05-03-2014

(05-03-2014, 02:00 AM)Kosaki Wrote: I'd like to see an ASM section, as well as a Perl section.

I was thinking that actually we could have two threads devoted to Perl and ASM? People just post questions and tutorials.


RE: WE NEED AN ASM SUBFORUM!!!!! - Alan Turing - 05-03-2014

(05-03-2014, 02:05 AM)vegimite Wrote: I was thinking that actually we could have two threads devoted to Perl and ASM? People just post questions and tutorials.

I'd much rather a whole section IMO


RE: WE NEED AN ASM SUBFORUM!!!!! - superMAUS - 05-03-2014

(05-03-2014, 02:15 AM)Kosaki Wrote: I'd much rather a whole section IMO

Yah but if that doesnt go through.


RE: WE NEED AN ASM SUBFORUM!!!!! - Alan Turing - 05-03-2014

(05-03-2014, 02:16 AM)vegimite Wrote: Yah but if that doesnt go through.

Then yeah that'd be nice to have


RE: WE NEED AN ASM SUBFORUM!!!!! - w00t - 05-03-2014

(05-03-2014, 01:59 AM)vegimite Wrote: Ahh, anyhow all the more reason to get one up so people can learn.

There are maybe 5 people on this forum with any kind of fluency in assembly.


RE: WE NEED AN ASM SUBFORUM!!!!! - superMAUS - 05-03-2014

(05-03-2014, 12:41 PM)w00t Wrote: There are maybe 5 people on this forum with any kind of fluency in assembly.

It only takes 3 people to have an active forum at the start but then it will start to grow.


RE: WE NEED AN ASM SUBFORUM!!!!! - 0xDEAD10CC - 05-05-2014

I've been doing a bit more with assembly for PE parsing, and malware analysis techniques. It's fairly useful, especially when you start understanding what the operating system on the host environment uses the 6 segment registers for, among a few other special registers.


RE: WE NEED AN ASM SUBFORUM!!!!! - xornull - 05-05-2014

(05-05-2014, 12:33 AM)0xDEAD10CC Wrote: I've been doing a bit more with assembly for PE parsing, and malware analysis techniques. It's fairly useful, especially when you start understanding what the operating system on the host environment uses the 6 segment registers for, among a few other special registers.

You can do that in C/C++ much easily with the IMAGE_XXXX structs


RE: WE NEED AN ASM SUBFORUM!!!!! - 0xDEAD10CC - 05-05-2014

(05-05-2014, 03:52 AM)xornull Wrote: You can do that in C/C++ much easily with the IMAGE_XXXX structs

I never mentioned ASM only being used for the PE parsing portion. Although it's still very easy to find the PEB_LDR_DATA data using ASM.