this is truly incredible: https://github.com/X11Libre/xserver/pull/1627/files
they are using system(3) inside a security-critical domain (the display server).
but yes, sure, my refusal of xlibre on security grounds is the problem
this is truly incredible: https://github.com/X11Libre/xserver/pull/1627/files
they are using system(3) inside a security-critical domain (the display server).
but yes, sure, my refusal of xlibre on security grounds is the problem
If you have a fediverse account, you can quote this note from your own instance. Search https://social.treehouse.systems/users/ariadne/statuses/115702490074497940 on your instance and quote it. (Note that quoting is not supported in Mastodon.)
me when i xdotool key 'Return' until my image request is approved
RE: https://social.treehouse.systems/users/ariadne/statuses/115702490074497940
static const char*
GetDialogCommand(void)
{
if (system("which zenity > /dev/null 2>&1") == 0) {
return "zenity";
}
if (system("which dialog > /dev/null 2>&1") == 0) {
return "dialog";
}
if (system("which whiptail > /dev/null 2>&1") == 0) {
return "whiptail";
}
if (system("which yad > /dev/null 2>&1") == 0) {
return "yad";
}
if (system("which kdialog > /dev/null 2>&1") == 0) {
return "kdialog";
}
return NULL;
}