vletoux

Results 30 issues of vletoux

The parser is not compatible with nullable types (int? for example) It can be done by adding: ``` if (Nullable.GetUnderlyingType(type) != null) { return ParseValue(Nullable.GetUnderlyingType(type), json); } ``` to https://github.com/zanders3/json/blob/master/src/JSONParser.cs#L251-L252

Thanks for releasing this I've a json with a null string (returning null, not "") ![image](https://user-images.githubusercontent.com/10632326/159489091-c13b2daa-5d5b-4b41-84a7-0d50aa35bbb7.png) The parser seems to be confused because the value is {"ul"} and not {null}...

Seems stupid but in https://github.com/TheHive-Project/TheHiveDocs/blob/master/training-material.md, it is indicated that "With the new version, analyzers are disabled by default. The training VM is delivered with Abuse Finder, File_Info, Msg_Parser and MaxMind...

I was in the First 2016 in Seoul during the demo of the tool and I was quite amazed by its potential. Now I found some time to install it...

The only_full_group_by mode is a default for recent version of mysql Reporting alerts fails with ""Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column...

To not forget this idea: On Windows SCardReadCache and SCardWriteCache are available starting Windows 7 to cache smart card data in the smart card service. The advantage is that the...

enhancement
Windows

### Problem Description When setup ADCS, you can choose to use a smart card as a root CA. Choose Enterprise & Root CA. Then in the CSP selection, select OpenSC...

## Description IMAP connection may start to trigger error after 1 minute ## Environment 1. OS Windows 10 2. OpenEx version: OpenEx 3.2.2 (latest) 3. OpenEx client: None 4. Other...

You are missing to clear the flag NTLMSSP_NEGOTIATE_LOCAL_CALL in NTLM message set as an optimization by Windows 10

The constant SW_COMMAND_CHAINING_NOT_SUPPORTED is missing Reference: http://www.win.tue.nl/pinpasjc/docs/apis/jc222/javacard/framework/ISO7816.html#SW_COMMAND_CHAINING_NOT_SUPPORTED Underlying code: https://github.com/martinpaljak/vJCRE/blob/85c7828089fcde0fa8cde89a622b5ec582804947/src/javacard/framework/ISO7816.java missing line: short SW_COMMAND_CHAINING_NOT_SUPPORTED = 0x6884;