Jörg Stucke

Results 80 comments of Jörg Stucke

I don't know if this helps with debugging but this also happens with exceptions in `multiprocessing.pool.Pool`: ```python from multiprocessing.pool import Pool def foo(x): raise Exception() Pool(1).map(foo, [1]) ``` Tested in...

I did some digging in the code and the reason for the crash seems to lie in `IPython.core.ultratb.VerboseTB.format_exception_as_a_whole`. This method will be called from the `while` loop in `structured_traceback` for...

Hi, some of the matches could be false positives: the YARA signature for OpenSSL is not very rebust and could match in other binaries. That is something that could definately...

> Any opinions on line length? Coincidentally, that is also my preferred maximum line length. Do we need to upgrade the pre-commit hook?

It seems to bionic_venv only failed because of a timeout that was set too tightly.

It seems some options were changed by removing them because they were not configured with their default value: - load-plugins - max-args=7 - max-complexity=7 - min-public-methods=0 - max-public-methods=40 and many...

Hi, how large is the file you are trying to analyze? If files are very large, some analysis plugins may run into timeouts, which results in no analysis data being...

Do you mean 3 MB? That can still be relatively large depending on the analysis / plugin. E.g. that would be very large for a ELF executable and the CWE-Checker...

It seems installing npm from ubuntu's package repository is problematic as the version of node/npm in bionic is ancient: (you can try this very easy and quick with docker, i.e....

> We should probably follow the official installation steps from https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions Alternatively we could also use a docker image for the installation: node:alpine3.15 has ~10% of the size of a...