Simone Margaritelli
Simone Margaritelli
Show asynchronous compression progress on ui so the user will not shut down the device if a compression is happening.
two columns ui for higher resolutions
A `bleah` kind of thing but cooler. - [x] Linux support. - [ ] macOS support.
Inside the log files, among other things, there're the key information the AI needs at every epoch: - the observation - the current policy the AI picked - the reward...
every once in a while, nexmon dies with: ``` [ 4341.527847] brcmfmac: brcmf_cfg80211_nexmon_set_channel: Set Channel failed: chspec=4101, -110 [ 4344.327806] brcmfmac: brcmf_cfg80211_nexmon_set_channel: Set Channel failed: chspec=4097, -110 [ 4347.127853] brcmfmac:...
Right now the `daemon` will only intercept and manage outgoing connections, add support for incoming connections ( `ip address x.x.x.x is connecting to port 80 of httpd` )
I believe that increments like [this one](https://github.com/evilsocket/opensnitch/blob/1db03b5570ea429227ea39b4c6947a0746b1de59/ebpf_prog/opensnitch.c#L422) should be done via: > __sync_fetch_and_add(value, 1) according to [this](https://docs.cilium.io/en/latest/bpf/#llvm): > Since the defined array map is global, the accounting needs to use...
while apps are creating TLS connections, the daemon should (asynchronously) reslove the whole certificates chain of every visited host and collect statistics about what certification authority is being used for...
When the user is prompted for an action, there should be an `advanced` tab that shows the javascript equivalent of the current rule. If that code is edited, the rule...
Hi, in an eBPF program that i'm loading with gobpf I need to perform atomic increments and atomic set. For the first, I use `__sync_fetch_and_add` with no issues, however if...