Learn how to use dpkg, rpm, and other related tools to find malware on your systems.
Month: February 2020
Exit Values on Windows
Hi cyberpals. Today I was messing around with some Windows utilities and realized that I didn't fully understand how to handle exit values. On *nix systems, you can do something like this: daniel@disstrack ~ % cat exit.c #include <stdlib.h> int main(int argc, char *argv[]) { if (argc > 1) return atoi(argv[1]); return 0; } daniel@disstrack …