This repository has been archived on 2023-12-31. You can view files and clone it, but cannot push or open issues or pull requests.
EDA263/lab1/login_linux.c

121 lines
3.7 KiB
C
Raw Normal View History

2022-01-29 10:32:11 +01:00
/* $Header: https://svn.ita.chalmers.se/repos/security/edu/course/computer_security/trunk/lab/login_linux/login_linux.c 585 2013-01-19 10:31:04Z pk@CHALMERS.SE $ */
/* gcc -std=gnu99 -Wall -g -o mylogin login_linux.c -lcrypt */
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <stdio_ext.h>
#include <string.h>
#include <signal.h>
#include <pwd.h>
#include <sys/types.h>
#include <crypt.h>
#include "pwent.h" /* Step 2 */
#define TRUE 1
#define FALSE 0
#define LENGTH 16
void sighandler() {
//sigset_t mask;
//sigfillset(&mask);
//sigprocmask(SIG_SETMASK, &mask, NULL);
2022-01-29 10:32:11 +01:00
signal(SIGINT, SIG_IGN); /* This will catch ctrl+c and ignore it*/
//signal(SIGTSTP, SIG_IGN); /* This will catch ctrl+z and ignore it*/
2022-01-29 10:32:11 +01:00
/* add signalhandling routines here */
/* see 'man 2 signal' */
}
int main(int argc, char *argv[]) {
//struct passwd *passwddata /* Step 1 */
mypwent *passwddata; /* Step 2 */
2022-01-29 10:32:11 +01:00
/* see pwent.h */
char important1[LENGTH] = "**IMPORTANT 1**";
char user[LENGTH];
char important2[LENGTH] = "**IMPORTANT 2**";
//char *c_pass; //you might want to use this variable later...
char prompt[] = "password: ";
char *user_pass;
sighandler();
while (TRUE) {
/* check what important variable contains - do not remove, part of buffer overflow test */
printf("Value of variable 'important1' before input of login name: %s\n",
important1);
printf("Value of variable 'important2' before input of login name: %s\n",
important2);
printf("login: ");
fflush(NULL); /* Flush all output buffers */
__fpurge(stdin); /* Purge any data in stdin buffer */
if (fgets(user,sizeof(user),stdin) == NULL ) {
clearerr(stdin); //if EOF only, clear error
continue; ///* overflow attacks. */
}
user[strlen(user)-1] = '\0'; //replacing \n with \0
2022-01-29 10:32:11 +01:00
/* check to see if important variable is intact after input of login name - do not remove */
printf("Value of variable 'important 1' after input of login name: %*.*s\n",
LENGTH - 1, LENGTH - 1, important1);
printf("Value of variable 'important 2' after input of login name: %*.*s\n",
LENGTH - 1, LENGTH - 1, important2);
// using makepass.c to create hashed password -> saving it manually in passdb
2022-01-29 10:32:11 +01:00
user_pass = getpass(prompt); //enter password using deprecated function :/
passwddata = mygetpwnam(user); //get user info from passdb
2022-01-29 10:32:11 +01:00
if (passwddata != NULL) {
/* You have to encrypt user_pass for this to work */
/* Don't forget to include the salt */
2022-01-29 10:32:11 +01:00
char *user_pass_encrypted = crypt(user_pass, passwddata->passwd_salt);
if (&user_pass_encrypted == NULL) {
perror("Error");exit(EXIT_FAILURE);
}
printf("encryption of typed pass: %s \n", user_pass_encrypted);
if (passwddata->pwfailed >= 10) {
printf("Too many failed login attempts. Your account has been locked.\nContact and Admin to unlock your account.\n");
} else if (!strcmp(user_pass_encrypted, passwddata->passwd)) {
2022-01-29 10:32:11 +01:00
printf(" You're in !\n");
passwddata->pwfailed = 0;
passwddata->pwage = passwddata->pwage + 1;
2022-01-29 16:07:55 +01:00
if (mysetpwent(user, passwddata) < 0) { /* execute the command */
perror("Error");exit(EXIT_FAILURE);
}
if (passwddata->pwage > 100) {
printf(" Your password is OLD!!!!\n");
}
2022-01-29 10:32:11 +01:00
/* check UID, see setuid(2) */
2022-01-29 16:07:55 +01:00
if (setuid(passwddata->uid) < 0) { /* execute the command */
perror("Error");exit(EXIT_FAILURE);
}
2022-01-29 10:32:11 +01:00
/* start a shell, use execve(2) */
2022-01-29 15:52:22 +01:00
if (execve("/bin/bash",NULL,NULL) < 0) { /* execute the command */
perror("Error");exit(EXIT_FAILURE);
}
} else {
passwddata->pwfailed = passwddata->pwfailed + 1;
2022-01-29 16:07:55 +01:00
if (mysetpwent(user, passwddata) < 0) { /* execute the command */
perror("Error");exit(EXIT_FAILURE);
}
2022-01-29 10:32:11 +01:00
}
}
printf("Login Incorrect \n");
}
return 0;
}