Ver Fonte

Electric Fence - does not detect this.

apt install electric-fence
Steve Thielemann há 4 anos atrás
pai
commit
d7e0ca5ab0
2 ficheiros alterados com 3 adições e 2 exclusões
  1. 1 0
      CMakeLists.txt
  2. 2 2
      mystic.cpp

+ 1 - 0
CMakeLists.txt

@@ -81,6 +81,7 @@ add_subdirectory(zf_log)
 add_executable(mystic mystic.cpp lastseen.cpp terminal.cpp render.cpp utils.cpp)
 target_link_libraries(mystic util)
 target_link_libraries(mystic zf_log)
+target_link_libraries(mystic efence)
 target_compile_definitions(mystic PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_VERBOSE)
 
 add_executable(try-re try-re.c)

+ 2 - 2
mystic.cpp

@@ -542,7 +542,7 @@ int mangle(int fd, const char *buffer, int len) {
       char restore_color[30]; // ansi color
       strcpy(restore_color, color_restore(&temp_console));
 
-      if (random_activate(3)) {
+      if (0) { // random_activate(3)) {
         char display[100] = "";
         int needs_cls = 0;
 
@@ -640,7 +640,7 @@ int mangle(int fd, const char *buffer, int len) {
             // Does this drop the last element in phrasing? (Seems like it takes awhile to get Seg Fault spoof, might be why)
           } while (last_phrasing.seen_before(r));
 
-	  r = 6;
+	      r = 5;
 
           int color = random() % 15 + 1;
           int x = random() % 30 + 1;