home *** CD-ROM | disk | FTP | other *** search
/ DEFCON 15 / DefCon15.bin / Speakers / Jennings / Extras / incognito / list_tokens.h < prev    next >
C/C++ Source or Header  |  2007-03-11  |  534b  |  29 lines

  1. #ifndef INC_LIST_TOKENS_H
  2. #define INC_LIST_TOKENS_H
  3.  
  4. // Token struct definitions
  5. typedef struct
  6. {
  7.     char username[256];
  8.     HANDLE token;
  9. } SavedToken;
  10.  
  11. typedef struct
  12. {
  13.     char username[256];
  14.     int token_num;
  15.     BOOL delegation_available;
  16.     BOOL impersonation_available;
  17. } unique_user_token;
  18.  
  19. typedef enum
  20. {
  21.     BY_USER,
  22.     BY_GROUP
  23. } TOKEN_ORDER;
  24.  
  25. SavedToken *get_token_list(DWORD *num_tokens_enum);
  26. void list_unique_tokens(TOKEN_ORDER);
  27. void process_user_token(HANDLE, unique_user_token*, DWORD*, TOKEN_ORDER);
  28.  
  29. #endif