Projects STRLCPY nanorobeus Commits ceca26f3
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    Makefile
    skipped 1 lines
    2 2  CC_x64 := x86_64-w64-mingw32-gcc
    3 3  CC_x86 := i686-w64-mingw32-gcc
    4 4  STRIP := strip
    5  -OPTIONS := -O3 -masm=intel -Wall -I include -l advapi32 -l secur32
     5 +OPTIONS := -O3 -masm=intel -Wall -I include
    6 6   
    7 7  nanorobeus:
    8 8   $(CC_x64) source/base64.c source/common.c source/klist.c source/luid.c source/ptt.c source/purge.c \
    9  - source/sessions.c source/entry.c -o dist/$(BOFNAME).x64.exe $(OPTIONS)
     9 + source/sessions.c source/entry.c -o dist/$(BOFNAME).x64.exe $(OPTIONS) -l advapi32 -l secur32
    10 10   $(STRIP) --strip-all dist/$(BOFNAME).x64.exe
    11 11  
    12 12   $(CC_x86) source/base64.c source/common.c source/klist.c source/luid.c source/ptt.c source/purge.c \
    13  - source/sessions.c source/entry.c -o dist/$(BOFNAME).x86.exe $(OPTIONS)
     13 + source/sessions.c source/entry.c -o dist/$(BOFNAME).x86.exe $(OPTIONS) -l advapi32 -l secur32
    14 14   $(STRIP) --strip-all dist/$(BOFNAME).x86.exe
    15 15   
    16 16   $(CC_x64) -c source/entry.c -o dist/$(BOFNAME).x64.o -DBOF $(OPTIONS)
    skipped 11 lines
  • ■ ■ ■ ■ ■
    source/ptt.c
    skipped 36 lines
    37 37   submitRequest = (KERB_SUBMIT_TKT_REQUEST*)MSVCRT$calloc(submitSize, sizeof(KERB_SUBMIT_TKT_REQUEST));
    38 38   if (submitRequest == NULL) {
    39 39   PRINT(dispatch, "[!] KERB_SUBMIT_TKT_REQUEST - could not allocate memory.\n");
     40 + MSVCRT$free(decoded);
    40 41   SECUR32$LsaDeregisterLogonProcess(hLsa);
    41 42   return;
    42 43   }
    skipped 30 lines
Please wait...
Page is in error, reload to recover