dnscat2
dnscat2 copied to clipboard
Suggestion for improvement
I'd suggest to change
typedef enum
{
FALSE,
TRUE
} NBBOOL;
to sth like
typedef enum
{
_FALSE,
_TRUE
} NBBOOL;
and all corresponding occurrences.
the problem with the first one is that you can't #include <mach-o/dyld.h>
, it would see it as redeclaration of TRUE/FALSE.
So problems would occur when integrating the code in other projects.