免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1103 | 回复: 2
打印 上一主题 下一主题

端口扫描程序的俩问题,望高手指点 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-08-13 12:29 |只看该作者 |倒序浏览
以下是自己以前写的一个端口扫描程序,但是
1。扫描结果很不稳定  有的时候同一IP每次扫描出来的结果都不一样(以前问过,但是没有解决)
2。如果目的主机没有防火墙,很有可能显示对方开放所有端口。
另外,如何通过扫描区别网关?

  1. #include <stdio.h>;
  2. #include <sys/time.h>;
  3. #include <sys/socket.h>;
  4. #include <sys/types.h>;
  5. #include <netinet/in.h>;
  6. #include <unistd.h>;
  7. #include <fcntl.h>;
  8. #include <netdb.h>;
  9. #include <string.h>;

  10. #ifndef        MAXNAMELEN
  11. #define        MAXNAMELEN 256
  12. #endif
  13. #define        MAXPORT        256



  14. u_long        startip,endip;
  15. int                port[MAXPORT]={21,23,25,53,79,80,88,109,110,135,139,1080,1434,3389,7626,8080};
  16. int                portcount=16;
  17. struct        timeval        time={5,0};
  18. fd_set        fdset;


  19. void        usage();
  20. void        setiphost();
  21. void        resetport(char* newport);
  22. void        setip(char* start,char* end);
  23. void        scan(u_long ip);


  24. main(int argc,char *argv[])
  25. {
  26.        
  27.         int                i=1;
  28.         u_long        ip;
  29. printf("%u\n",argc);
  30. printf("%u\n",inet_addr(argv[1]));
  31.         switch(argc)
  32.         {
  33.                 case        1:
  34.                         setiphost();
  35.                         break;
  36.                 case        2:
  37.                         printf("argc:2\n");
  38.                         if(argv[1]=="h")
  39.                         {
  40.                                 usage();
  41.                         }
  42.                         else if(strchr(argv[1],',')!=0)
  43.                         {
  44.                                 setip(argv[1],argv[1]);
  45.                         }
  46.                         else
  47.                         {
  48.                         resetport(argv[1]);
  49.                         }
  50.                         break;
  51.                 case        3:
  52.                         printf("argc:3\n");
  53.                         setip(argv[1],argv[2]);
  54.                         break;
  55.                 case        4:
  56.                         printf("argc:4\n");
  57.                         setip(argv[1],argv[2]);
  58.                         resetport(argv[3]);
  59.                         break;
  60.                 default:
  61.                         usage();
  62.         }
  63.         printf("we are going to scan %u\t%u\n",startip,endip);
  64. printf("%s\t%s\n",argv[1],argv[2]);
  65. for(ip=startip;ip<=endip;ip++)
  66.         {

  67.                 scan(ip);
  68.                 printf("\n");
  69.         }


  70. }





  71. void        usage()
  72. {
  73.         printf("scan startip endip port\n");
  74.         printf("for example:scan 11.11.11.11 11.11.11.60 21,23,80\n");
  75.         printf("if there is no port,the program will scan port21,23,25,53,79,80,88,109,110,135,139,1080,1434,3389,7626,8080.\n");
  76.         printf("if there is no startip and endip,the program will scan the host.\n");
  77.         exit(0);
  78.         return;
  79. }


  80. void        setip(char* start,char* end)
  81. {
  82.         u_long        change;
  83.         startip=ntohl(inet_addr(start));
  84.        
  85. printf("start\t%s\t%u\n",start,startip);
  86.         endip=ntohl(inet_addr(end));
  87. printf("%d\n",inet_addr(end));



  88. printf("end\t%s\t%u\n",end,endip);
  89.         if(startip>;endip)
  90.         {
  91.                 change=startip;
  92.                 startip=endip;
  93.                 endip=change;
  94.         }
  95.         return;
  96. }


  97. void        setiphost()
  98. {
  99.         struct        hostent *hst;
  100.         char        name[MAXNAMELEN];
  101.         size_t        size;
  102.         if(gethostname(name,size)!=0)
  103.         {
  104.                 printf("gethostname() failed.\n");
  105.                 exit(-1);
  106.         }
  107.         if(hst=gethostbyname(name))
  108.         {
  109.                 printf("local ip address:%s",hst->;h_addr_list[0]);
  110.                 setip(hst->;h_addr_list[0],hst->;h_addr_list[0]);
  111.         }
  112.         else
  113.         {
  114.                 printf("gethostbyname() failed.\n");
  115.                 usage();
  116.         }
  117.         return;

  118. }


  119. void        resetport(char* newport)
  120. {
  121.         char *p;
  122.         char *douhao=",";
  123.         portcount=0;
  124.         if(p=strtok(newport,douhao))
  125.         {
  126.                 port[0]=atoi(p);
  127.                 printf("you are going to scan port:%d\t",port[0]);
  128.                 portcount=1;
  129.         }
  130.         else
  131.         {
  132.                 printf("resetport() failed.\n");
  133.                 usage();
  134.         }
  135.         while(p=strtok(NULL,douhao))
  136.         {
  137.                 port[portcount]=atoi(p);
  138.                 printf("%d\t",port[portcount]);
  139.                 portcount++;
  140.         }       
  141. }




  142. void scan(u_long ip)
  143. {
  144.         struct        sockaddr_in        sckddr;
  145.         int                                        skt,i,j,m;
  146.         int                                        sasize=sizeof(sckddr);

  147.         sckddr.sin_family=AF_INET;
  148.         sckddr.sin_addr.s_addr=htonl(ip);
  149.        
  150.         for(i=0;i<portcount;i++)
  151.         {

  152.                
  153.                 sckddr.sin_port=htons(port[i]);
  154.                 if((skt=socket(AF_INET,SOCK_STREAM,0))<0)
  155.                 {
  156.                         printf("socket() failed.\n");
  157.                         exit(-1);
  158.                 }

  159.                 if(fcntl(skt,F_SETFL,O_NDELAY)<0)
  160.                 {
  161.                         printf("fcntl() failed.\n");
  162.                         exit(-1);
  163.                 }

  164.                 connect(skt,(struct sockaddr *)&sckddr,sasize);
  165.                 FD_ZERO(&fdset);
  166.                 FD_SET(skt,&fdset);
  167.                 j=select(skt+1,(fd_set *)0,&fdset,(fd_set *)0,&time);
  168.                 switch (j)
  169.                 {
  170.                 case -1:
  171.                         printf("select() failed.\n");
  172.                         exit(-1);
  173.                 case 0:
  174.                         close(skt);
  175.                         break;
  176.                 default:
  177.                         if(FD_ISSET(skt,&fdset))
  178.                         {
  179.                                 printf("%s\topen\t%u\n",inet_ntoa(ntohl(ip)),port[i]);
  180.                         }
  181.                
  182.                 }

  183.         }
  184. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2005-08-13 14:54 |只看该作者

端口扫描程序的俩问题,望高手指点

这个不是经典的原程序,你下载一个portsentry1.2应该没问题的。

论坛徽章:
0
3 [报告]
发表于 2005-08-13 15:29 |只看该作者

端口扫描程序的俩问题,望高手指点

这是我边学边写的。自然不经典~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP