Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vadinfo command issue with vad.Flags #24

Closed
GoogleCodeExporter opened this issue Aug 6, 2015 · 1 comment
Closed

vadinfo command issue with vad.Flags #24

GoogleCodeExporter opened this issue Aug 6, 2015 · 1 comment

Comments

@GoogleCodeExporter
Copy link

Hey guys, 

I'm getting this error using vadinfo on XP SP2 and SP3 samples. 

$ python volatility.py vadinfo -f mem.vmem
Volatile Systems Volatility Framework 1.4_rc1
************************************************************************
Pid:      4
VAD node @823c4200 Start 00010000 End 00033fff Tag Vad 
Traceback (most recent call last):
  File "volatility.py", line 138, in <module>
    main()
  File "volatility.py", line 129, in main
    command.execute()
  File "/Users/user/Desktop/Volatility-1.4_rc1/volatility/commands.py", line 96, in execute
    func(outfd, data)
  File "/Users/user/Desktop/Volatility-1.4_rc1/plugins/internal/vadinfo.py", line 49, in render_text
    self.write_vad_short(outfd, vad)
  File "/Users/user/Desktop/Volatility-1.4_rc1/plugins/internal/vadinfo.py", line 65, in write_vad_short
    outfd.write("Flags: {0}\n".format(vad.Flags))
  File "/Users/user/Desktop/Volatility-1.4_rc1/volatility/obj.py", line 773, in __getattribute__
    return self.m(attr)
  File "/Users/user/Desktop/Volatility-1.4_rc1/volatility/obj.py", line 758, in m
    parent = self, name = attr)
  File "/Users/user/Desktop/Volatility-1.4_rc1/volatility/obj.py", line 280, in Object
    **kwargs)
  File "/Users/user/Desktop/Volatility-1.4_rc1/plugins/overlays/Basic.py", line 88, in __init__
    obj.NativeType.__init__(self, targetType, offset, vm, parent, **args)
TypeError: __init__() got multiple values for keyword argument 'theType'




Original issue reported on code.google.com by michael.hale@gmail.com on 27 Aug 2010 at 7:22

@GoogleCodeExporter
Copy link
Author

Yep, you're quire right.  Since we made the Object wrapper hand in all 
variables by keyword (rather than the first two by position), it's now 
important that all object have the correct signature in their __init__ 
functions (and a couple in the basic overlay didn't).  This should now be fixed 
in r404 (hopefully the revision is found).  5;)

Original comment by mike.auty@gmail.com on 27 Aug 2010 at 7:49

  • Changed state: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant