Giulio Muscarello
Giulio Muscarello
If I understand correctly, as of now the tool only accepts macro files. However, one often needs to make changes to the macro, eg. to make it work correctly with...
It would be nice if vm2 could display "correct" stack traces when an error is thrown from the sandbox. For instance, this is what is currently displayed: ``` /home/user/box-js/node_modules/vm2/lib/main.js:213 throw...
I was reviewing [the FMA FFT loop](https://github.com/tfhe/tfhe/blob/v1.0.1/src/libtfhe/fft_processors/spqlios/spqlios-fft-fma.s#L79): ```asm fftsize2loop: vmovapd (%r10),%ymm0 /* r0 r1 r2 r3 */ vmovapd (%r11),%ymm1 /* i0 i1 i2 i3 */ vshufpd $0,%ymm0,%ymm0,%ymm2 /* r0 r0...
There have been some talks of adding configuration examples in the source files, so I figured I'd make them machine-readable and integrate them with Jekyll. This PR adds a script...
As the title says - I was on a long plane trip, so I figured I'd try and spend my time implementing tests. Note that they launch the Honeytrap binary,...
This is a copy of #316, for which I had accidentally not used a feature branch.
Depends on #284, fixes #337. This transform adds a field `source-ip-country` to events.
I think the branch is now mature enough for merging. Depends on #284, implements stateful transforms and Yara transforms. They can be used directly in the config (`yara="/honeytrap/my-rule.yara"`, `yara="http://192.168.10.10/my-rule.yara"`, etc),...
Fixes #303, depends on #284. Adds an event counter with a configurable period. Example configuration: ```toml [[filter]] channel=["console"] groupby=["category"] period=5 ``` This configuration groups events by the "category" key, so...
As discussed in chat. This implements plugins (in the Go sense) for the following features: * Services; * Transforms; * Channels. Currently, plugins are searched for in the data directory,...