当前位置:  技术问答>linux和unix

请问Linux下的sniffer实现的问题

    来源: 互联网  发布时间:2015-06-28

    本文导语:  下面这段代码是从网上的代码改的 #include  #include  #include  #include  #include  #include  #include  #include  #include  #include  #include  #include  #include  #include  #include  #define INTERFACE "eth0" struct Ip{ unsigned int ip_length:4; unsi...

下面这段代码是从网上的代码改的
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

#define INTERFACE "eth0"
struct Ip{
unsigned int ip_length:4;
unsigned int ip_version:4;
unsigned char ip_tos;
unsigned short  ip_total_length;
unsigned short  ip_id;
unsigned short  ip_flags;
unsigned char  ip_ttl;
unsigned char  ip_protocol;
unsigned short  ip_cksum;
unsigned int  ip_source;
unsigned int  ip_dest;
};

struct tcp{
unsigned short  tcp_source_port;
unsigned short  tcp_dest_port;
unsigned int  tcp_seqno;
unsigned int  tcp_res1:4,
tcp_hlen:4,
tcp_fin:1,
tcp_syn:1,
tcp_rst:1,
tcp_psh:1,
tcp_ack:1,
tcp_urg:1,
tcp_res2:2;
unsigned short  tcp_winsize;
unsigned short  tcp_cksum;
unsigned short  tcp_urgnet;
};


int Open_Raw_Socket();
int Set_Promisc(char *interface,int sock);
int main()
{
int sock,bytes_received,fromlen;
char buffer[60000];
int i;
struct sockaddr_in from;
struct Ip  *ip;
struct tcp *tcp;
FILE  *fp;
sock=Open_Raw_Socket();
fp=fopen("log.txt","w+");
fclose(fp);
fp=fopen("log.txt","a+");
while(1)
{
fromlen=sizeof(from);
memset(buffer,0,sizeof(buffer));
bytes_received=recv(sock,buffer,sizeof(buffer),0);
                   /*此处有问题 即使将下面的循环换成fprintf(...)函数也有问题
for(i=0;iip_protocol==6)
{
printf("IP header:n");
printf("Ip header length....%dn",ip->ip_length);
printf("Protocol............%dn",ip->ip_protocol);
printf("version............%dn",ip->ip_version);
printf("total_length............%dn",ip->ip_total_length);
printf("ttl............%dn",ip->ip_ttl);
printf("source............%dn",ip->ip_source);
printf("dest............%dn",ip->ip_dest);
tcp=(struct tcp*)(buffer + (4*ip->ip_length));
printf("TCP hearder:n");
printf("Source port ....%dn",ntohs(tcp->tcp_source_port));
printf("seq.......%dn",ntohs(tcp->tcp_seqno));

}
}
fclose(fp);
}


int Open_Raw_Socket()
{
int sock;
if((sock=socket(AF_INET,SOCK_RAW,IPPROTO_TCP))

    
 
 

您可能感兴趣的文章:

  • 请问高手linux中用md5来实现一串字符串的加密,用c++/c实现
  • 求助:用JSP实现统计来访人数,请问怎样实现?
  • 请问连接池的工作原理和实现
  • 请问:有没有人在Linux下实现过计费网关?
  • 请问各位大虾,怎么实现三层页面之间的参数传递?
  • 请问如何在JTextPane里实现画表格的功能,就想word那样!!!!
  • 请问在linux内核实现浮点运算怎么弄?
  • 请问shell能实现注册的功能吗?
  • 请问聊天室中显示用户在线离线的原理是怎样?有哪些方法实现呢?
  • 请问Jb怎么实现系统登录程序!
  • 请问,pipe()这个管道建立函数在哪里实现的?
  • 请问怎么样实现这种东西,很急!谢谢
  • 请问怎么实现链接?
  • 公司要做一个外贸办公软件,请问用Java如何实现........
  • 请问《软件工程java语言实现》一书在那里能下载
  • 请问怎么实现即时通讯?
  • 请问使用或安装什么软件能够实现Win2000下访问Linux分区?
  • 请问在java中如何实现类的动态生成?谢谢
  • 请问在applet中如何实现滚动条?
  • 请问谁有LINUX内核设计与实现第三版的电子书?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 请问玩过SOLARIS的高手门,在不正常关机后,就不能启动到windows公用桌面了,只能在命令提示模式下了,请问怎么解决这个问题啊?急~!~!
  • 请问:在GCC里的C程序里的变量的声明是不是只能在前面,而且相同类型的变量的声明只能放在一起?如果不是,请问怎么样可以解决这个问题.
  • 请问linux下GUI开发的问题!
  • 请问一个奇怪的问题!
  • 非常急! 请问daemontools 在red hat 9下的安装问题? 在线等待
  • 请问安装zhcon,cxterm问题
  • 请问如何在一台单机上装VMware的网络访问问题?
  • 请问adduser的一个问题!
  • 请问在Jbuilder 7中, 做swing界面, 用JDK1.4,怎么解决中文显示问题?
  • 请问一个很菜的问题
  • 请问关于为redhat7.2设置多IP问题?急!
  • 请问一个简单问题!
  • 请问一个基本的问题?
  • 请问各位大侠一个关于jar命令问题
  • 请问高手___redhat7.3安装问题
  • 正想学linux 请问red hat版本之间的问题
  • 请问这里可以讨论MINIX的问题吗?
  • 请问FreeBSD拨号问题
  • 请问这个问题怎么解决啊?
  • 今天搞来一台Solaris,真高兴啊,请问一些问题,怎么退出TELNET?
  • 请问:我知道路由器的telnet密码,但忘记了enable 密码,请问如何是好?
  • 请问那里有SYBASE的jbdb 2.0下载;jspsmartupload可以直接将文件上传到数据库,请问如何使用
  • 请问最新的reahat9.0是基于什么核心的?2.4?2.6?请问那里能下载?
  • 请问:请问哪里有关于linux基本操作命令讲解的资料下载,最好是幻灯片格式的.
  • 请问,我试图用#admintool&图形工具命令来安装sun workshop5.0,为什么进入的却是用户管理界面?请问具体该如何在solaris下安装应用软件
  • 请问在Redhat 9里,我从登录就是图形介面,请问如何在图形介面内进入命令行方式呢,谢谢
  • 请问:我在redhat下装了bochs-2.2.1-1.rpm,.装了后,想设置一下,但找不到bochsrc.fda.bxrc,请问这个文件在哪个曰录下啊。
  • 请问:在配置Qt时,很多文档都说在.profile,.login里加东西,但是我好像没有发现有这两个文件上,请问这些文件在哪个目录下啊
  • 请问各位大虾,小弟今天开始学jsp了,这学期我们有java课,所以已经下载了jdk(好象是1.2),请问我的98环境怎么配置jsp环境呀?我的jdk可以运行.java程序,别的我就不知道了....谢谢!
  • 主机是WIN2000,我用的是LUNIX,请问是否可以共享上网? 如果可以请问如何设置? 500分答谢,龟儿食言!
  • 请问出现fstab文件丢失该怎么修复呀?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3