温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

后台扫描,网测通过

发布时间:2020-06-29 08:27:07 来源:网络 阅读:337 作者:jker 栏目:安全技术

#include <sys/socket.h>
#include <stdio.h>
#include <netinet/in.h>
#include <string.h>
#include <netdb.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <arpa/inet.h>

#define LINE 1024
#define dict "dict.txt"
#define result "manager.txt"

int main(int argc,char *argv[]){
 int sc,fd;
 unsigned short port = 80;
 struct sockaddr_in add;struct in_addr in;
 char *ip;
 struct hostent *host;
 char rheader[LINE],dictbuf[LINE],resbuf[LINE];
 char *dir,path[LINE]="",*arr[LINE],*tmp,state[3],manager[LINE];
 int i=0,j,n=0,bytes;

 if(argc != 2){
   printf("please input domain.\r\n");
   return;
 }

 dir = get_current_dir_name();
 strcat(path,dir);
 strcat(path,"/");
 strcat(path,dict);
 fd = open(path,O_RDONLY);
 read(fd,dictbuf,sizeof(dictbuf));
 close(fd);
 arr[n++]=strtok(dictbuf,"\r\n");
 while(tmp=strtok(NULL,"\r\n"))arr[n++]=tmp;

 ip = malloc(512);
 memset(ip,'\0',512);

 sc = socket(AF_INET,SOCK_STREAM,0);
 if(sc == -1){
   printf("create socket fail!\r\n");
   return;
 }

 bzero(&add,sizeof(add));
 add.sin_family=AF_INET;
 add.sin_port=htons(port);

 bzero(&path,sizeof(path));
 strcat(path,dir);
 strcat(path,"/");
 strcat(path,result);
 fd = open(path,O_WRONLY|O_CREAT|O_APPEND,S_IRWXU);

 if(!(host=gethostbyname(argv[1]))){
     fprintf(stderr,"Can`t resolve host.\n");
     exit(1);
 }

 memcpy(&add.sin_addr.s_addr,host->h_addr_list[0],4);
 in.s_addr = add.sin_addr.s_addr;
 printf("IP:%s\n",ip=inet_ntoa(in));

 add.sin_addr.s_addr=inet_addr(ip);
 if(connect(sc,(struct sockaddr *)(&add),sizeof(struct sockaddr))==-1){
   printf("conn fail!\r\n");
   return -1;
 }
 for(;i<n;i++){
   memset(manager,'\0',LINE);
   memset(rheader,'\0',LINE);

   strcat(rheader,"HEAD ");
   strcat(rheader,arr[i]);
   strcat(rheader," HTTP/1.1");
   strcat(rheader,"\r\n");

   strcat(rheader,"Host:");
   strcat(rheader,argv[1]);
   strcat(rheader,"\r\n");

   strcat(rheader,"\r\n");
   printf("send:[\n%s\n]\n",rheader);
   write(sc, rheader, strlen(rheader));usleep(100);        
   bytes = read(sc, resbuf, LINE);        
   printf("Response from %s:[\n%s\n]\n",ip,resbuf);        

   for(j=0;j<3;j++){
     state[j]=resbuf[j+9];
   }
   printf("state:%s\n",state);
   if(!((strcmp(state,"400")>=0 && strcmp(state,"450")<=0)||strcmp(state,"500")==0)){
     strcat(manager,"http://");
     strcat(manager,argv[1]);
     strcat(manager,arr[i]);
     printf("********%s*******\n",manager);
     strcat(manager,"\r\n");
     write(fd,manager,sizeof(manager));
   }    
 }
 close(sc);  
 close(fd);
 return 0;
}

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI