Jarosław Jedynak
Jarosław Jedynak
Compare with this screenshot:  Additionally some "underrun ocurred" error messages are sometimes shown (unrelated)
https://github.com/CERT-Polska/ursadb/runs/8068754933 This might have happened because the assert was overly strict, but there is a small chance that this is a legitimate bug - worth investigating. We should fix this,...
The startup script creates a database if it doesn't exist: ``` #!/bin/bash cd /var/lib/ursadb if [ ! -f "$1" ] then /usr/bin/ursadb_new "$1" fi /usr/bin/dumb-init -- /usr/bin/ursadb $@ ``` This...
Create a set of correctness tests, using the current e2etest framework. 1. Use a real-world Yara rule corpus (maybe the same that mquery uses - https://github.com/CERT-Polska/mquery/tree/master/src/tests/yararules/testdata). 2. Store a predefined...
This is currently just a rough idea and needs more design. Find a way to assign key-value metadata fields to samples. This will be necessary to implement https://github.com/CERT-Polska/mquery/issues/230. The expected...
We should at least pretend that we keep track of memory usage. Ursadb will happily consume all the RAM it can get. Granted, it tries to be lightweight, but that's...
We need a way to introspect the running database, or debug some issues without either recompiling the db with debug prints or attaching with gdb. Especially now that I'll be...
`DbChange` class is clearly used in ways it was not designed for. The class definition: ```cpp enum class DbChangeType { Insert = 1, Drop = 2, Reload = 3, ToggleTaint...
**Feature Category** - [ ] Correctness - [x] User Interface / User Experience - [x] Performance - [ ] Other (please explain) **Describe the problem** When logging in, clicking the...
This is a draft PR that fixes #281. There are some minor things missing, most importantly: - [ ] document and/or explain the limitations - [ ] add the cleanup...