Paweł Srokosz

Results 73 issues of Paweł Srokosz

![image](https://github.com/CERT-Polska/drakvuf-sandbox/assets/8720367/61c290ff-ed53-4799-9114-282770bc98b6) I don't really know what happens but missing logs are not very promising. If this XTF test is completely unreliable, maybe it should not be used :thinking:

bug

After looking at https://github.com/CERT-Polska/malduck/pull/119 I found that `bb4c7d48773b21c62885d0206c9414176c254e6104b4a0ffe730aa570b424948` is not actually `b = open("x.exe").read(); b = b * 100`, but set of different binaries/ The main problem was that `procmempe.from_memory(p,...

Current design is based on metaclasses, `int`-based classes etc. All of these things slow down object construction which is crucial for performance (see also https://github.com/CERT-Polska/malduck/pull/95) - Redesigned IntType to simplify...

IntType is implementation of a concept to make a fixed-size int that behaves similarly to real `int`, so it's useful for reimplementation of code written in C language. It's natural...

https://pypi.org/project/mwdblib/ `The author of this package has not provided a project description` So we need to fill it in!

One of use-cases found during some code review: ```python def remove_attribute(sample: mwdblib.MWDBFile, key: str, value: Any = None) -> None: for attribute in sample.attributes[key]: if value is None or attribute.value...

As in documentation: ![image](https://user-images.githubusercontent.com/8720367/110842543-8526e480-82a7-11eb-9420-fc04469ea31a.png) ![image](https://user-images.githubusercontent.com/8720367/110842495-72acab00-82a7-11eb-8b56-c697fbdf670c.png)

Currently, every CLI command performs `/auth/login` request if password was stored using `mwdb login` command. It would be nice to securely store session token for multiple password-authenticated CLI invocations.

enhancement