Sergey Polzunov
Sergey Polzunov
In the execution flow, this `if` condition https://github.com/SigmaHQ/sigma/blob/48265ad71afdebd7416a8cea56055a1cf12a0c5b/tools/sigma/backends/fireeye-helix.py#L108 with the check for instances of `SigmaTypeModifier` wraps the check for `SigmaStartswithModifier` and `SigmaEndswithModifier`: https://github.com/SigmaHQ/sigma/blob/48265ad71afdebd7416a8cea56055a1cf12a0c5b/tools/sigma/backends/fireeye-helix.py#L109 The condition in the last `if` will...
It seems there is a typo in the code here https://github.com/SigmaHQ/sigma/blob/48265ad71afdebd7416a8cea56055a1cf12a0c5b/tools/sigma/backends/fireeye-helix.py#L113 the result of `stip` function is not assigned to the value
In this example, `Feature.POSSESSIVE` set on parent phrase leaks into child phrase and changes its state: ```clojure user=> (let [object (doto #_=> (.createNounPhrase factory "campaign") #_=> (.setDeterminer "the"))] #_=> (println...
Using simplenlg library in Clojure, I can reproduce the following bug: ```clojure user=> (let [properties ["wooden" "large" "old" "heavy"] #_=> realise (fn [el] (.getRealisation (.realise realiser el))) #_=> sentence (.createSentence...
At the moment I can not change values of fields after STIX2 object instance was created: ```python In [2]: m = stix2.Malware(name='test malware', labels=['foo', 'bar']) In [3]: m.external_references = ['a']...
For some reason string `'682'` is treated as a year during serialisation and pattern with invalid syntax is produced: ```python In [3]: str(stix2.AndObservationExpression([ ...: stix2.EqualityComparisonExpression(stix2.ObjectPath('cve', ['value']), '2018-11790'), ...: stix2.EqualityComparisonExpression(stix2.ObjectPath('cwe', ['value']),...
I would like to map `Ctrl + {` and `Ctrl + }` to `Previous Tab` and `Next Tab` via Brave Settings > Shortcuts but the input field for setting the...
the instructions (`*`, `_` and `/` wrappers) are recognized and are correctly hidden/shown but the style of the wrapped text does not change ``` NVIM v0.4.4 Build type: Release LuaJIT...
I'm seeing strange behaviour: shortly after publishing a message, client dies with `connection timed out (waiting for :PINGRESP)`. My code is very similar to the example provided in READE.md, with...