#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>

void winner(){
    printf("Nothing interesting here...\n");
    system("# this does nothing...");
    exit(0);
}

void gadget(){
    __asm__("pop {r0,pc}\n");
}

int main(){
    char buff[16];
    printf("Welcome to ROPLevel2 created by Billy Ellis (@bellis1000)\n");
    printf("The objective of this level is to execute a shell command of your choice by using a ROP gadget followed by jumping to system()\n");
    printf("Good luck: ");
    scanf("%s",buff);
    printf("Nice try ;)\n");
    return 0;
}