繁体   English   中英

C:Program可以正常运行,但是与gdb一起崩溃

[英]C:Program works fine but with gdb it crashes

我是C语言新手,有问题。 这是我的代码

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>

int read_password(FILE *file, char *password, size_t n) {
  fgets(password, n, file);
  password[strcspn(password, "\n")] = '\0';
}

void elevated_shell(){
  gid_t gid = getegid();
  setresgid(gid,gid,gid);
  fflush(stdout);
  system("/bin/bash");
}

void regular_shell(){
  gid_t gid = getgid();
  setresgid(gid,gid,gid);
  fflush(stdout);
  system("/bin/bash");
}

int main(int argc, char **argv){

  char flag[100];
  char password[100];
  FILE *file;

  printf("Hi! Welcome to my secure shell software!\n");

// Read in the root password
  file = fopen("flag.txt", "r");
  if(file == NULL) {
    printf("FAIL: Failed to open the password file\n");
    return -3;
   } else {
      read_password(file, flag, sizeof(flag));
}

// Read in the user's password
  printf("Please enter the password: ");
  fflush(stdout);
  read_password(stdin, password, sizeof(password));


   if(strcmp(flag,password) == 0) {
      printf("Correct! Here's an elevated shell :)\n");
      elevated_shell();
   } else {
       printf("Incorrect! No elevated shell for you >:)\n");
       regular_shell();
   }

}

因此,我已经编译了该文件并运行。 当我直接运行它时,它运行良好,但是每当我尝试使用gdb检查内存时,它就会崩溃。 例如,当在主函数上设置断点并运行程序时,fopen函数返回Null,因为程序打印输出失败:无法打开密码文件并退出。 希望能对您有所帮助。

GDB使用运行程序的用户特权(要引起注意的类型为whoami),而不是程序具有的特权。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM