hydrapsy / malwarecookbook

Automatically exported from code.google.com/p/malwarecookbook
0 stars 0 forks source link

MutantScanDB can't match mutants because of apostrophe in mutant name #12

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Since mutants are returned with apostrophes in their name, suspicious mutants 
are never highlighted because they are not matched.  If you change the code 
like so:

 948             if mutants.has_key(ObjectNameString.replace("'", "")):
 949                 css = 'suspicious'
 950                 samples = '<br>'.join(mutants[ObjectNameString.replace("'", "")])
 951             else:
 952                 css = samples = ''

You will get highlighted suspicious mutants.  

Original issue reported on code.google.com by jamie.l...@gmail.com on 20 Mar 2011 at 3:34

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r50.

Original comment by michael.hale@gmail.com on 25 Mar 2011 at 5:11