Raphaël Vinot
Raphaël Vinot
I can do that, but for the documentation for example, do you want the compiled version? It's going to be pretty big. And for the tests cases, how do you...
I will add the source for the documentation, but the test cases files are over 40Mb. I can probably reduce it, but bundling PE executable in the package is something...
> > but the test cases files are over 40Mb. I can probably reduce it, but bundling PE executable in the package is something I'll not do. > > Are...
Just making sure before I investigate further: have you tried passing a timeout value in the PyMISP call? See: https://github.com/MISP/PyMISP/blob/bb9f053b6892503851451a5eb94a7127afd6ec8a/pymisp/api.py#L141
Right, the session is killed by the proxy. I had a quick look and it seems that python relies on the system config for the TCP keepalive probes, and you...
Alright, sorry, I missed that. It seems the keepalive config needs to be enabled manually: https://github.com/psf/requests/issues/5430#issuecomment-773738453 In theory, if you try add the code below before you do the PyMISP...
Oh, good news. Are you running the script with the code above? Or did you change something on the Databricks side?
Okay, so I tested with a sample code, and this code snippet (https://github.com/MISP/PyMISP/issues/848#issuecomment-1187666336) sends tcp keepalive packets, tcpdump confirms. And that would confirm what you're saying with the requests that...
It is a bit hidden, the default values set by PyMISP for the attributes are defined there: https://github.com/MISP/PyMISP/blob/main/pymisp/data/describeTypes.json#L527 And the file is opened once globally there: https://github.com/MISP/PyMISP/blob/main/pymisp/abstract.py#L37
The reason I didn't implement it this way is because for other classes, we can have a lot more parameters: if you take `MISPObject` [for example](https://github.com/MISP/PyMISP/blob/main/pymisp/mispevent.py#L635), or `MISPEvent`, adding all...