Raphaël Vinot

Results 550 comments of Raphaël Vinot

Yes, this error is related to the certificate and for some reason the `ca-certificates` package is missing something, it has nothing to do with MISP nor Microsoft Graph API. I'm...

That command with [curl](https://en.wikipedia.org/wiki/CURL) is only to confirm the certificate it working, it does nothing with MISP/PyMISP. What you need to do in the script that uses PyMISP will be...

okay, so I looked at the code and the solution for you should simply be to replace False by the path to the pem file on the machine you run...

When you have an error like that, something is failing on MISP side. For more details, you need to go look at the logfiles of the MISP instance. In general,...

That's what I mean with iterating until done: ```python i = 1 while True: r = misp.search(controller='events', return_format='json', limit=10, page=i) if not r: # no more responses, quit loop break...

No, really not. The current code of microsoftgraph doesn't supports pagination at all (that's why I invited you to open an issue in their repository), so changing the config won't...

My suggestion in the other post is a piece of pseudo code that will iterate over a paginated query, it will work, but as you can read, it uses `misp.search`,...

I'll patch the code so it works for you. As you're not a paid customer, I'll work on that on a best-effort basis.

You should still open an issue in the Microsoft repo, they're the maintainers of the code and will probably have an easier (and maybe faster) time than be to fix...

That's not enough details for me to help you in any way. When you get a 500 error, it means the instance is not working at all. Is the web...