Steven

Results 27 comments of Steven

This is how I connect to the crt.sh with psycopg2. I'll be putting more on my fork later this week. ``` conn = psycopg2.connect(dbname="certwatch", user="guest", host="crt.sh", cursor_factory=RealDictCursor) conn.set_session(readonly=True, autocommit=True) ```

I've written a new core.py and objects.py that uses SLY. There are still things to do, but it parses rulesets effectively using the lexing, parsing, and objects based on the...

Yes, I just pushed it here, https://github.com/malvidin/plyara/tree/slyara. There are still things that are not finished. - tracking imports and externals in the condition -- test_conditions can't find filename -- test_detect_dependencies...

I think that having clearer string modifiers is useful. To compose the strings without breaking backwards compatibility, either logic is needed to determine if a composable modifier was used by...

See #1249 for more context on adding additional modifiers. It appears that new modifiers will not be added at this point, and something like composable modifiers are needed before additional...

With the modification to the Python 3.7 email._header_value_parser.py, the following is my output. This causes test_headeremail2list_2 to fail, as intended, because the default Python header parser succeeds. I created pull...

This appears to be related to this issue. The pull request I made only addresses one case, I'll look at addressing the other later this week. https://bugs.python.org/issue30988

This pull addresses the issue more completely, so I closed my pull request. https://github.com/python/cpython/pull/15600 The following can be used to ``` import inspect import email import email.policy display_name_source = inspect.getsource(email._header_value_parser)...

They are not more performant when compared directly to the non-blocking version when nothing else is running. I will try to get some tests done against multiple samples, instead of...

We recently transitioned to primarily exporting JSON to address multiple issues we found in our KV extractions, which would also address any issues with fields that contain commas inappropriately