duck-cord
Description
Analysis
// made this always be > 1, to prevent from acessing the SYSTEM_USER text with #0000
self.tag[3] = '1' + (rand() % 9);typedef struct {
char name[MAX_NAME_LEN];
union {
uint32_t tag_raw;
char tag[4];
};
} user_t;Solution
Last updated