what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

PonyOS 0.4.99-mlp Privilege Escalation

PonyOS 0.4.99-mlp Privilege Escalation
Posted Apr 2, 2013
Authored by John Cartwright

PonyOS version 0.499-mlp suffers from privilege escalation due to the cat binary being executed with escalated privileges and file permissions do not work. It also has a kernel compromise vulnerability.

tags | exploit, kernel
SHA-256 | 3cc9c88954c40969dd91bdad93080b62fc386a7022593ded5062531355365a12

PonyOS 0.4.99-mlp Privilege Escalation

Change Mirror Download
Advisory: PonyOS Security Issues
John Cartwright <johnc@grok.org.uk>

Introduction
------------
Like countless others, I was pretty excited about PonyOS yesterday
(April 1st 2013) and decided to give it a go. After wasting a lot of
time nyan'ing, I knew this was the future of desktop OSes. However, I
wondered how secure PonyOS really was. So, I took a look at the
source, which revealed that our ponies may be in danger of compromise!

All bugs tested against PonyOS 0.4.99-mlp from ponyos.org.

Userland Compromise
-------------------
Take a look at this snippet from login.c:

int uid = checkUserPass(username, password);

if (uid < 0) {
fprintf(stdout, "\nLogin failed.\n");
continue;
}

system("cat /etc/motd");

pid_t pid = getpid();

uint32_t f = fork();
if (getpid() != pid) {
/* TODO: Read appropriate shell from /etc/passwd */
set_username();
set_homedir();
set_path();
char * args[] = {
"/bin/sh",
NULL
};
syscall_setuid(uid);
int i = execvp(args[0], args);

It seems that login runs 'cat' before dropping privileges.

This is easy to exploit, given that the file permissions don't work.
Just log in as 'local', and replace the 'cat' binary with another ELF
- 'whoami' will do nicely for a PoC. Then log out, and back in again.

This causes your binary to run as uid 0. Exciting stuff!

Kernel Compromise
-----------------
Obviously userland exploits are boring and it was important that I
find some kernel holes to play with. Luckily PonyOS has quite a few
for your enjoyment.

You can abuse syscall_fstat() to write the contents of the stat buf to
an arbitrary kernel location if you so wish. There are a few other
similar bugs where pointers aren't sanitised, too.

static int stat(int fd, uint32_t st) {
if (fd >= (int)current_process->fds->length || fd < 0) {
return -1;
}
fs_node_t * fn = current_process->fds->entries[fd];
struct stat * f = (struct stat *)st;
f->st_dev = 0;
f->st_ino = fn->inode;

...

f->st_mode = fn->mask | flags;
f->st_nlink = 0;
f->st_uid = fn->uid;
f->st_gid = fn->gid;
f->st_rdev = 0;
f->st_size = fn->length;

This is all well and good, but for today's
silliness^h^h^h^h^h^h^h^h^himportant security audit I decided to
exploit the ioctl handler found in tty.c:

int pty_ioctl(pty_t * pty, int request, void * argp) {
debug_print(WARNING, "Incoming IOCTL request %d", request);
switch (request) {
case TIOCSWINSZ:
debug_print(WARNING, "Setting!");
memcpy(&pty->size, argp, sizeof(struct winsize));
/* TODO send sigwinch to fg_prog */
return 0;
case TIOCGWINSZ:
memcpy(argp, &pty->size, sizeof(struct winsize));
return 0;
default:
return -1; /* TODO EINV... something or other */
}
return -1;
}

Printing WARNING to the console is fine, but the ponies won't get the
message. What we have here is pretty much an arbitrary read/write of
kernel memory.

Want to read the value of 0x11223344 ?

struct winsize ws;
ioctl(0, TIOCSWINSZ, (void *)0x11223344);
ioctl(0, TIOCGWINSZ, &ws);
printf("%x %x %x %x\n", ws.ws_col, ws.ws_row,
ws.ws_xpixel, ws.ws_ypixel);

Want to zero the memory at that address?

struct winsize ws;
memset(&ws, '\0', sizeof(struct winsize));
ioctl(0, TIOCSWINSZ, &ws);
ioctl(0, TIOCGWINSZ, (void *)0x11223344);

Using these two primitives it is possible to dump out a large chunk of
the kernel memory, find the process list, user_t, etc and patch it
appropriately to change your uid.

There's a screenshot of an exploit in action at:
http://www.grok.org.uk/advisories/findus.jpg

However, the 'findus' code is not 'stable' enough to share right now.

Mitigating Factors
------------------
PonyOS doesn't come with a compiler, or any remote access, so it is
quite difficult to exploit unless you build your exploit code into the
OS image.

Having said that, there are some other bugs that could help you if you
really wanted to attack PonyOS, given command line access. For
example, there is a perfectly good format string bug in the shell:

for (int i = 0; i < shell_commands_len; ++i) {
if (strstr(shell_commands[i], argv[0]) == shell_commands[i]) {
list_insert(matches, shell_commands[i]);
match = shell_commands[i];
}
}
if (matches->length == 0) {
list_free(matches);
return;
} else if (matches->length == 1) {
for (int j = 0; j < strlen(context->buffer); ++j) {
printf("\010 \010");
}
printf(match);

This can be triggered by going into /bin and creating an empty file
called (for example) %08x%08x. Perhaps you could use the excellent
'bim' editor for this task. Then, re-execute the shell, and use the
tab-completion functionality to trigger the format string bug. Just
a few short pony-sized steps to go from there to injecting arbitrary
code to exploit the system call issues.

Alternatively you might want to pass an invalid TERM to nyancat:

char * nterm = getenv("TERM");
if (nterm) {
strcpy(term, nterm);
}

Unfortunately the only way I could find to set this value was the
shell's 'export' builtin, and long lines crash the shell (512 byte
buffer...) so I haven't played with that bug yet, or indeed this other
crash.

Conclusion
----------
There's so much to see and do! I don't think PonyOS will be replacing
my other systems anytime soon, but it is an interesting project worthy
of your attention. I mean, it has ponies *and* massive security
holes! What's not to like?

In all seriousness I accept the fact that the OS isn't meant to be
secure in any way and I have essentially wasted 24 hours of my life
horsing around with it.


Login or Register to add favorites

File Archive:

September 2023

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Sep 1st
    2 Files
  • 2
    Sep 2nd
    21 Files
  • 3
    Sep 3rd
    0 Files
  • 4
    Sep 4th
    17 Files
  • 5
    Sep 5th
    34 Files
  • 6
    Sep 6th
    29 Files
  • 7
    Sep 7th
    11 Files
  • 8
    Sep 8th
    25 Files
  • 9
    Sep 9th
    0 Files
  • 10
    Sep 10th
    0 Files
  • 11
    Sep 11th
    26 Files
  • 12
    Sep 12th
    23 Files
  • 13
    Sep 13th
    17 Files
  • 14
    Sep 14th
    22 Files
  • 15
    Sep 15th
    16 Files
  • 16
    Sep 16th
    0 Files
  • 17
    Sep 17th
    0 Files
  • 18
    Sep 18th
    19 Files
  • 19
    Sep 19th
    60 Files
  • 20
    Sep 20th
    23 Files
  • 21
    Sep 21st
    15 Files
  • 22
    Sep 22nd
    8 Files
  • 23
    Sep 23rd
    0 Files
  • 24
    Sep 24th
    0 Files
  • 25
    Sep 25th
    17 Files
  • 26
    Sep 26th
    3 Files
  • 27
    Sep 27th
    13 Files
  • 28
    Sep 28th
    5 Files
  • 29
    Sep 29th
    12 Files
  • 30
    Sep 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close