Toni
Toni
> 2. these rules as used as fallback, only if "internal engine" doesn't found any classification (as suggested in [Custom Applications added into protos.txt file gets matched first, before the...
The review will take some time.
If you can provide a pcap file for every application you're interested in, I'll investigate and may be able to find some detection patterns.
For Debian based distros, you have to create a new script file in `/etc/grub.d/` e.g. `/etc/grub.d/40_winboot`, which should basically look alike: > #!/bin/sh > exec tail -n +3 $0 >...
The information you provided is not enough to help you fix this issue. Some useful information could be: * provide a coredump file * provide a stack trace that contains...
But shouldn't it be `DESTDIR=/` in your case? Because you want to install it to `/` with `PREFIX=usr/`. Or am I wrong?
You're damn right. `$(PREFIX)` is usually part of `$(libdir)` if not set by the user explicitly. I remember that a long time ago there was an "anomaly" within all those...
I think there is something broken. Using this patch: ```patch diff --git a/src/lib/Makefile.in b/src/lib/Makefile.in index 918547ad..e76d8edc 100644 --- a/src/lib/Makefile.in +++ b/src/lib/Makefile.in @@ -91,8 +91,9 @@ cppcheck: cppcheck --template='{file}:{line}:{severity}:{message}' --quiet --enable=all...
Nevermind, the patch is not enough to fix this. ;)
Nevermind, I've just used `osslsigncode` wrong. Thanks for your help. For any1 who's interested; To sign a `*.sys` file: `osslsigncode sign -pkcs12 [pfx-file] -ac [CA-file] -in [driver-path-in] -out [driver-path-out] -askpass`