-
Notifications
You must be signed in to change notification settings - Fork 388
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
Memory address is not in process memory space #114
Comments
Hey! Is there any chance this is a Windows 11 lsass dump? I've got the same issue with Win11 dump. BTH pypy identifies OS as Win10: |
Thank you for the comment, I actually fixed the parsing (not the OS detection) not long after the issue was created, however since this is a new feature only Porchetta Industries subscribers have access to it until March. |
Hi, I have exactly the same issue with a dump from Windows 11. |
I had a similar
Has the GA release of this update been postponed? |
A user from discord sent me a win11 dump that causes this issue. It has been resolved on the Prochetta repo. |
Hi, I've got an LSASS memory dump that I'm unable to parse with pypykatz. The file is shared in the issue
Here is the message I get :
` % pypykatz lsa minidump ../lsass.DMP
INFO:pypykatz:Parsing file ../lsass.DMP
INFO:pypykatz:===== BASIC INFO. SUBMIT THIS IF THERE IS AN ISSUE =====
INFO:pypykatz:pypyKatz version: 0.6.3
INFO:pypykatz:CPU arch: X64
INFO:pypykatz:OS: Windows 10
INFO:pypykatz:BuildNumber: 22621
INFO:pypykatz:MajorVersion: 6
INFO:pypykatz:MSV timestamp: 42982603
INFO:pypykatz:===== BASIC INFO END =====
ERROR:pypykatz:Error while parsing file ../lsass.DMP
Traceback (most recent call last):
File "~/pypykatz/pypykatz/pypykatz.py", line 260, in get_lsa
lsa_dec = LsaDecryptor.choose(self.reader, lsa_dec_template, self.sysinfo)
File "~/pypykatz/pypykatz/lsadecryptor/lsa_decryptor.py", line 20, in choose
return LsaDecryptor_NT6(reader, decryptor_template, sysinfo)
File "~/pypykatz/pypykatz/lsadecryptor/lsa_decryptor_nt6.py", line 22, in init
self.acquire_crypto_material()
File "~/pypykatz/pypykatz/lsadecryptor/lsa_decryptor_nt6.py", line 30, in acquire_crypto_material
self.iv = self.get_IV(sigpos)
File "~/pypykatz/pypykatz/lsadecryptor/lsa_decryptor_nt6.py", line 66, in get_IV
self.reader.move(ptr_iv)
File "~/.local/lib/python3.9/site-packages/minidump/minidumpreader.py", line 136, in move
self._select_segment(address)
File "~/.local/lib/python3.9/site-packages/minidump/minidumpreader.py", line 104, in _select_segment
raise Exception('Memory address 0x%08x is not in process memory space' % requested_position)
Exception: Memory address 0x7ffd903728b8 is not in process memory space
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "~/pypykatz/pypykatz/lsadecryptor/cmdhelper.py", line 242, in run
mimi = pypykatz.parse_minidump_file(args.memoryfile, packages=args.packages)
File "~/pypykatz/pypykatz/pypykatz.py", line 150, in parse_minidump_file
raise e
File "~/pypykatz/pypykatz/pypykatz.py", line 146, in parse_minidump_file
mimi.start(packages)
File "~/pypykatz/pypykatz/pypykatz.py", line 349, in start
self.lsa_decryptor = self.get_lsa()
File "~/pypykatz/pypykatz/pypykatz.py", line 266, in get_lsa
raise Exception('All detection methods failed.')
Exception: All detection methods failed.
Traceback (most recent call last):
File "~/pypykatz/pypykatz/pypykatz.py", line 260, in get_lsa
lsa_dec = LsaDecryptor.choose(self.reader, lsa_dec_template, self.sysinfo)
File "~/pypykatz/pypykatz/lsadecryptor/lsa_decryptor.py", line 20, in choose
return LsaDecryptor_NT6(reader, decryptor_template, sysinfo)
File"~/pypykatz/pypykatz/lsadecryptor/lsa_decryptor_nt6.py", line 22, in init
self.acquire_crypto_material()
File "~/pypykatz/pypykatz/lsadecryptor/lsa_decryptor_nt6.py", line 30, in acquire_crypto_material
self.iv = self.get_IV(sigpos)
File "~/pypykatz/pypykatz/lsadecryptor/lsa_decryptor_nt6.py", line 66, in get_IV
self.reader.move(ptr_iv)
File "~/.local/lib/python3.9/site-packages/minidump/minidumpreader.py", line 136, in move
self._select_segment(address)
File "~/.local/lib/python3.9/site-packages/minidump/minidumpreader.py", line 104, in _select_segment
raise Exception('Memory address 0x%08x is not in process memory space' % requested_position)
Exception: Memory address 0x7ffd903728b8 is not in process memory space
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "~/pypykatz/pypykatz/lsadecryptor/cmdhelper.py", line 242, in run
mimi = pypykatz.parse_minidump_file(args.memoryfile, packages=args.packages)
File "~/pypykatz/pypykatz/pypykatz.py", line 150, in parse_minidump_file
raise e
File "~/pypykatz/pypykatz/pypykatz.py", line 146, in parse_minidump_file
mimi.start(packages)
File "~/pypykatz/pypykatz/pypykatz.py", line 349, in start
self.lsa_decryptor = self.get_lsa()
File "~/pypykatz/pypykatz/pypykatz.py", line 266, in get_lsa
raise Exception('All detection methods failed.')
Exception: All detection methods failed.
`
Here is the dump
lsass.zip
Thanks in advance
The text was updated successfully, but these errors were encountered: