Benoît Amiaux

Results 12 comments of Benoît Amiaux

No, the library only support 8-bit currently, which means no gamma correction To do that, like you said, you would need to add 8-bit to N-bit conversion, N-bit resize and...

sorry, commit c24ba1c is not about this issue but about another bug

try this one ``` python3 $icebox_dir/src/icebox/icebox_py/symbols.py check win10 ``` and report back its output

It looks like it's just missing ntdll symbols which you can download with the following command ``` python $icebox_dir\src\icebox\icebox_py\symbols.py pdb B54F3499813EBCF139AEFDD664E98FDD1 ntdll.dll ``` I've tried it and got 404 which...

Is it the same ntdll PDB version ?

maybe the download script does not work anymore, checking ...

The command line was wrong, try this: ``` python $icebox_dir\src\icebox\icebox_py\symbols.py pdb B54F3499813EBCF139AEFDD664E98FDD1 ntdll.pdb ``` Which work correctly for me

I will look into it, meanwhile, can you test with a bigger stacksize ? https://github.com/thalium/icebox/blob/8a97bf4121b7dae92bfea511368c896214f8b97a/src/icebox/icebox/core/state.cpp#L104

The coroutine stuff is not really required anymore since we do not use page faults anymore. I should probably remove it

Icebox does split into aligned chunks before reading and we don't get segfaults. However, reading the virtualbox implementation, it's supposed to support reading physical memory mapping multiple contiguous pages so...