hard code shell

This commit is contained in:
Roy Olav Purser 2024-02-09 21:39:01 +01:00
parent 27096b766c
commit 3b54d77984
Signed by: roypur
GPG Key ID: 063DAA01D56E28CB

View File

@ -26,19 +26,7 @@ int main() {
return 1;
}
if(prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_CLEAR_ALL, 0, 0, 0) == -1) {
perror("prctl");
return 1;
}
char shell[128] = {0};
struct passwd *pw = getpwent();
strlcpy(shell, pw->pw_shell, sizeof(shell));
printf("%s\n", shell);
endpwent();
execl(shell, shell, NULL);
execl("/usr/bin/zsh", "/usr/bin/zsh", NULL);
perror(NULL);
return 0;
}