mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:17:45 +00:00
whoami: Use pledge() and unveil()
This commit is contained in:
parent
0b44f9d600
commit
4f7081289c
1 changed files with 12 additions and 0 deletions
|
@ -29,6 +29,18 @@
|
|||
|
||||
int main(int, char**)
|
||||
{
|
||||
if (pledge("stdio rpath", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (unveil("/etc/passwd", "r") < 0) {
|
||||
perror("unveil");
|
||||
return 1;
|
||||
}
|
||||
|
||||
unveil(nullptr, nullptr);
|
||||
|
||||
puts(getlogin());
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue