diff --git a/boop/boopkit-boop b/boop/boopkit-boop index 66d9e97..a80f853 100755 Binary files a/boop/boopkit-boop and b/boop/boopkit-boop differ diff --git a/boopkit.c b/boopkit.c index 16b01e9..ecb0b55 100644 --- a/boopkit.c +++ b/boopkit.c @@ -61,7 +61,8 @@ void usage() { printf("\n"); printf("Options:\n"); printf("-h, help Display help and usage for boopkit.\n"); - printf("-x, ignore Source addresses to reject triggers from.\n"); + printf("-s, sudo-bypass Bypass sudo check. Breaks PID obfuscation.\n"); + printf("-x, reject Source addresses to reject triggers from.\n"); printf("\n"); exit(0); } @@ -169,7 +170,7 @@ static int handlepidlookup(void *ctx, void *data, size_t data_sz) { void rootcheck(int argc, char **argv) { long luid = (long)getuid(); - printf(" -> getuid() : %ld\n", luid); + printf(" -> getuid() : %ld\n", luid); if (luid != 0) { printf(" XX Invalid UID.\n"); if (!cfg.sudobypass) { diff --git a/boopkit.h b/boopkit.h index 15df53c..af60c64 100644 --- a/boopkit.h +++ b/boopkit.h @@ -39,7 +39,7 @@ struct tcp_return { }; // VERSION is the semantic version of the program -#define VERSION "1.0.5" +#define VERSION "1.0.6" // PORT for the boopkit TCP protocol for boopscript RCE #define PORT 3535