diff options
| author | caRJ33 <carj33dev@gmail.com> | 2019-01-02 23:25:15 +0100 |
|---|---|---|
| committer | caRJ33 <carj33dev@gmail.com> | 2019-01-02 23:25:15 +0100 |
| commit | be40a3392874af93c11953f253bcbf21930f5b7e (patch) | |
| tree | b3f7e54635c6813c6e7477f85af9eae7e17410a9 /main.c | |
| parent | 94ca6aa4514d30f69144ff00a40a2e21d0da7211 (diff) | |
Add 'proper' Windows support
Add .exe to .gitignore
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -62,6 +62,7 @@ void check_flags(int taintval) { } void check_proc() { +#ifndef _WIN32 char buf[2048]; FILE* fh; size_t size; @@ -85,6 +86,13 @@ void check_proc() { // Check the taint check_flags(taintval); +#endif +#ifdef _WIN32 + printf("Kernel is tainted :(\n"); + printf("Taint value: 133742069\n"); + printf("Taint flags: \n"); + printf("WINDOWS: You are running Windows, you fucking noob.\n"); +#endif } void check_flags_cli(char* flagstr) { |
