ifuncd-up icon indicating copy to clipboard operation
ifuncd-up copied to clipboard

GNU IFUNC is the real culprit behind CVE-2024-3094

Results 1 ifuncd-up issues
Sort by recently updated
recently updated
newest added

from @nekopsykose ```c #include #include #include #include struct myfuncs { unsigned (*multiply)(unsigned, unsigned); }; static struct myfuncs *page; unsigned multiply_base(unsigned x, unsigned y) { return x * y; } unsigned...