-
检查Linux下的网卡
检查Linux下的网卡 -detect network card in linux
- 2023-09-08 11:20:03下载
- 积分:1
-
sniff源程序 1)能俘获TCP包 2)能解析TCP包 3)能从TCP/IP包中提取出数据...
sniff源程序 1)能俘获TCP包 2)能解析TCP包 3)能从TCP/IP包中提取出数据-sniff a source) can capture TCP packet 2) Analysis of TCP packets can be three) from the TCP/IP packet data extracted
- 2022-07-09 05:58:11下载
- 积分:1
-
语音识别工程在家庭中的应用
voice recognition project on home application
- 2022-03-19 03:27:44下载
- 积分:1
-
Delphi ProXY 代理
Delphi HTTP 代理服务器 , Delphi HTTP 代理服务器 .
- 2023-04-24 15:20:02下载
- 积分:1
-
本设计的功能是填充一个TCP数据包,并发送给目的主机。
程序具体要求如下:
1) 以命令行形式运行:SendTCP、source_ip、source_p...
本设计的功能是填充一个TCP数据包,并发送给目的主机。
程序具体要求如下:
1) 以命令行形式运行:SendTCP、source_ip、source_port、dest_ip、dest_port,其中SendTCP是程序名,source_ip为源端IP地址,source_port为源端口号,dest_ip为目的地址,dest_port为目的端口号;
2) 其他的TCP头部参数请自行设定;
3) 数据字段为“This is my homework of network ,I am happy !”
4) 成功发送后在屏幕上输出“Send OK” 。
-The design features are filled with a TCP packet, and send the purpose of the host. Program specific requirements are as follows: 1) to form the command line run: SendTCP, source_ip, source_port, dest_ip, dest_port, which are SendTCP program name, source_ip client IP address as the source, source_port as the source port number, dest_ip for the purpose of the address, dest_port for the purpose of port number 2) the head of other TCP parameters at your own settings 3) data fields for the This is my homework of network, I am happy! 4) successfully sent the output on the screen after the Send OK .
- 2023-01-12 02:10:04下载
- 积分:1
-
网络抓包程序的引擎,还包含几个例子
网络抓包程序的引擎,还包含几个例子
- drivers Binaries of WinPcap s drivers and DLLs for Win95/98/ME, WinNT4 and Win2K. Useful to test the programs.
- examples Sample applications showing various uses of winpcap and packet.dll.
- lib rary files needed to create capture applications
- include include files needed to create capture applications
-procedures capturing Packet networks, it also contains several examples- drivers Binaries of WinPcap s drivers and DLLs for Win95/98/ME, quietly and Win2K. Useful to test the programs.- Sample applications examples showing various uses of of winpcap and packet.dll .- lib library files needed to create capture applications-include include files needed to create applications capture
- 2022-05-22 13:45:20下载
- 积分:1
-
网络安全sniff 诱探源码
网络安全sniff 诱探源码 -network security source sniff lured Exploration
- 2022-01-26 04:14:44下载
- 积分:1
-
Tracert程序
Tracert(跟踪路由)是路由跟踪实用程序,用于确定 IP 数据报访问目标所采取的路径。Tracert 命令用 IP 生存时间 (TT...
Tracert程序
Tracert(跟踪路由)是路由跟踪实用程序,用于确定 IP 数据报访问目标所采取的路径。Tracert 命令用 IP 生存时间 (TTL) 字段和 ICMP 错误消息来确定从一个主机到网络上其他主机的路由。
本程序利用RAW Socket实现Tracert程序。Tracert程序在具体实现时,是令其向目的主机发送一个ICMP回显请求消息,并重复递增IP头部TTL字段的值。刚开始的时候TTL等于1,这样当数据报抵达途中的第一个路由器时,TTL值就被减为0,导致发生超时错误,因为该路由器生成一份ICMP差错报文返回给源主机。随后,主机将数据报的TTL值递增1,以便IP报文能到达下一个路由器,并由下一路由器生成ICMP超时差错报文返回给源主机。不断重复这个过程,直到数据报达到最终的目的主机,此时目的主机将返回ICMP回显应答消息。这样,源主机只需对返回的每一份ICMP报文进行解析处理,就可以掌握数据报从源主机到达目的主机途中所经过的路由器信息。
本程序为控制台程序-Tracert using WinSocket
- 2023-05-23 15:50:04下载
- 积分:1
-
lan monitor software of the one university
某大学网络监控软件 纯VB 编写 很好的例子-lan monitor software of the one university
- 2023-02-26 02:40:03下载
- 积分:1
-
CAN网络与IP网络通信
void Task_Server(void *pdata) { SOCKET* s; int ei; //存放返回值的变量 int RecvCnt=0; //接收数据个数 uint8 RecvBuff[200]; //接收缓冲区 uint8 RecvBuffP=0; uint8 CanSUCCESS=0; struct sockaddr serveraddr,clientaddr; //sockaddr 结构体由协议栈类型、IP和端口组成 uint32 regaddrBYTE; serveraddr.sin_family = 0; //协议栈类型 serveraddr.sin_addr[0] = MCU_IP[0]; //四位IP地址 serveraddr.sin_addr[1] = MCU_IP[1]; serveraddr.sin_addr[2] = MCU_IP[2]; serveraddr.sin_addr[3] = MCU_IP[3]; serveraddr.sin_port = 4000; //服务器本地端口 s = socket(AF_INET,SOCK_STREAM,TCP_
- 2022-06-02 01:16:17下载
- 积分:1