π YOU π DONβT π NEED π TO π PUBLISH π ANOTHER π ZERO π DAY π ON π FRIDAY π NIGHT π YOU π PIECE π OF π SHIT π
and theyβre all LPEs. the most boring of zerodays. give me an RCE and my cold, dead eyes will light up at least a little bit
this? this is just pathetic
π CFz26
@domi and also i think this one required you to have a Mellanox ConnectX5, Intel 800-series or Netronome NFP series NIC in your system, which, yeah. At least on the bright side they seem to be decreasing in scope
@noisytoot first IA cap from yesterday, and iβm being informed about it right now
my point? still stands
@domi there just arent enough goofus monospace coding font blog posts on the subject. we need one by twitter guy 296356
@domi theyre all in the linux kernel because there isnt any other software anymore
@domi I'm crying why do they have their kernel version string at the bottom of the article and why are they running kali
@domi new method better than responsible disclosure. eat it forever
@domi tried compiling the poc. GCC emitted an 83 line error message. lmfao
@domi crying
/* KASLR + escalation */
static uint64_t kallsyms_addr(const char *sym)
{
FILE *f = fopen("/proc/kallsyms", "r");
if (!f) return 0;
char line[256];
uint64_t found = 0;
while (fgets(line, sizeof(line), f)) {
if (!strstr(line, sym)) continue;
char *sp = strchr(line, ' ');
if (!sp) continue;
char type = *(sp + 1);
if (type != 'D' && type != 'd' && type != 'T' && type != 't') continue;
uint64_t addr = strtoull(line, NULL, 16);
if (addr > 0xffffffff80000000ULL) { found = addr; break; }
}
fclose(f);
return found;
}
@domi wait, /proc/callsyms will output the addresses of everything as 0 unless it is read by a privileged user? also, the binary needs some setcap command ran on it that can only be done by a privileged user? what are we even doing
@mothcompute no need to worry about software eating the world if @domi has eaten all the software
@domi i thought it was well known that linux is chock full of privilege escalation vulns? that's why hardly anyone does shared local systems any more
@domi we've been just, in love with responsible disclosure recently huh