dzzie

Results 11 comments of dzzie

i ended up with a config file that has 4 sections for white/black listed processes and domains using fnmatch for wildcard support. here is what I implemented for reference, feel...

alternatively if section_index(name) returned -1 instead of undefined for a non existent section this would suffice as well.

I also want to be able to check if the section does not exist not pe.section_exists(".symtab") //works not for any i in (0 .. pe.number_of_sections-1):(pe.sections[i].name == ".symtab") //works not (pe.section_index(".symtab")...

Yeah with so many rules already written changing section_index to switch from UNDEFINED to -1 would have to be very carefully considered by those with magic greater than mine. Having...

awesome I think that will be a great addition :)

actually one note on this, the prototype should be moved to the private: section of the .h its not for public consumption as it expects that a read of len...

sorry I just realized i had a bug in this on the way home from the grocery store, one sec

ok I amended the commit, I realized I needed to scan the existing buffer for \n before scanning ahead, I was testing on a truncated ini, this time I ran...

one other thought I just had...I wonder if I need to pass the i counter into the readUntilNewLine function and start from there in the for loop instead of i=0,...

as a temporary fix, (i was on 2.0.0) I had to recompiled the dll from source w/ vs2019 community edition & cmake which went smooth. Note 32/64 bit binary download...