hydrapsy / malwarecookbook

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

psxview references modscan2.PSScan2 #19

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. install volatility from the 1.4 rc1 branch
2. run volatility with 'psxview' option
3. error

update malware.py to reference filescan.PSScan2 rather than modscan2.PSScan2

2844c2844
<         return dict((p.UniqueProcessId.v(), p) for p in 
modscan2.PSScan2(self._config).calculate() if p.ExitTime == 0)

---
>         return dict((p.UniqueProcessId.v(), p) for p in 
filescan.PSScan2(self._config).calculate() if p.ExitTime == 0)

Original issue reported on code.google.com by dave.lau...@gmail.com on 28 Apr 2011 at 4:45

GoogleCodeExporter commented 8 years ago
Ah thanks, this was fixed in r58.

Original comment by michael.hale@gmail.com on 29 Apr 2011 at 2:57