免费注册 查看新帖 |

Chinaunix

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

请教使用哪个命令能查出对方web服务器是用什么搭建的 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-01-05 20:22 |只看该作者 |倒序浏览
在Linux下,使用一个命令然后在加上一个域名   就能查询出这个网站是用那个web程序搭建的。本鸟以前见过这个命令,可惜当时忘记记下来了

论坛徽章:
0
2 [报告]
发表于 2010-01-05 20:53 |只看该作者

论坛徽章:
1
巨蟹座
日期:2014-06-04 13:33:30
3 [报告]
发表于 2010-01-05 21:04 |只看该作者
这值是能改的吧?
wget -S --spider domain.com
里面有一栏Server

论坛徽章:
0
4 [报告]
发表于 2010-01-06 03:14 |只看该作者
编译的时候可以改....
telnet xxxx 80就知道了 很简单

论坛徽章:
0
5 [报告]
发表于 2010-01-06 10:44 |只看该作者
curl -I www.baidu.com

论坛徽章:
0
6 [报告]
发表于 2010-01-06 12:10 |只看该作者
刚写了个c语言的

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4. #include <string.h>
  5. #include <sys/socket.h>
  6. #include <netinet/in.h>
  7. #include <netdb.h>

  8. #define HTTPPORT 80


  9. char* head =
  10.      "HEAD / HTTP/1.0\r\n"
  11.      "Accept: */*\r\n"
  12.      "User-Agent: Wget/1.10.2 (Red Hat modified)\r\n"
  13.      "Host:127.0.0.1\r\n"
  14.      "Connection: Keep-Alive\r\n\r\n";

  15. int connect_URL(char *domain,int port)
  16. {
  17.     int sock;
  18.     struct hostent * host;
  19.     struct sockaddr_in server;
  20.     host = gethostbyname(domain);
  21.     if (host == NULL)
  22.      {
  23.       printf("gethostbyname error\n");
  24.       return -2;
  25.      }

  26.     sock = socket(AF_INET,SOCK_STREAM,0);
  27.     if (sock < 0)
  28.     {
  29.       printf("invalid socket\n");
  30.       return -1;
  31.     }
  32.     memset(&server,0,sizeof(struct sockaddr_in));
  33.     memcpy(&server.sin_addr,host->h_addr_list[0],host->h_length);
  34.     server.sin_family = AF_INET;
  35.     server.sin_port = htons(port);
  36.     return (connect(sock,(struct sockaddr *)&server,sizeof(struct sockaddr)) <0) ? -1 : sock;
  37. }


  38. int main()
  39. {
  40.   int sock;
  41.   int ret;
  42.   char buf[100];
  43.   char *domain = "127.0.0.1";

  44.   
  45.   FILE* fp = fopen("test","w+");
  46.   if(NULL == fp){
  47.     printf("can't open stockcode file!\n");
  48.     return -1;
  49.   }
  50.   

  51.     sock = connect_URL(domain,HTTPPORT);
  52.     if (sock <0){
  53.        printf("connetc err\n");
  54.        return -1;
  55.         }

  56.     send(sock,head,strlen(head),0);

  57.     while(1)
  58.     {
  59.       if((ret=recv(sock,buf,100-1,0))<1)
  60.         break;
  61.       buf[ret]='\0';
  62.       printf("%s", buf);
  63.       fprintf(fp,"%s",buf); //save http data
  64.       }
  65.    
  66.     fclose(fp);
  67.     close(sock);
  68.   
  69.   //printf("bye!\n");
  70.   return 0;
  71. }


复制代码

论坛徽章:
0
7 [报告]
发表于 2010-01-07 02:15 |只看该作者

回复 #5 ubuntuer 的帖子

呵呵   就是这个  谢谢
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP