搜索资源列表
命令行下可以解读TCP数据报内容的Sniffer
- 命令行下可以解读TCP数据报内容的Sniffer-command line can be interpreted as TCP data reported to the Sniffer
P2PCom
- 一个可以实现的的P2P通信程序,C sharp完成。命令行界面-can achieve a peer-to-peer communications procedures, C sharp completed. The command line interface
meiguiIPC
- 多线程式IPC扫描器,包括弱口令,自动种植等.c++ builder代码.-multi-line program IPC scanners, including weak orders, automatic planting. C builder code.
NetCat_NC_src
- 大名鼎鼎的网络瑞士军刀NC的源代码!功能简介如下: Basic Features * Outbound or inbound connections, TCP or UDP, to or from any ports * Full DNS forward/reverse checking, with appropriate warnings * Ability to use any local source port * Ability to use any local
NetTime
- 获取网络时间同时在线校准当地时间,NetTime程序-Access to network time-line calibration local time NetTime program
btdownload
- BT下载器源代码VC++版,还算好用,只需指定输入IP,就可进行TCP、UDP多线和连接,监听等操作、尤其是对BT下载原理及其实现方法非常有帮助。 -BT download browser source code VC++ version is still easy to use, simply enter the designated IP, be it TCP, UDP and multi-line connections, such as monitoring the operatio
ppp
- 介绍了ppp协议的主要内容用户接入Internet,在传送数据时都需要有数据链路层协议,其中最为广泛的是串行 线路网际协议(SLIP)和点对点协议(PPP)。由于SLIP具有仅支持IP等缺点,主要用于低速(不超过19.2kbit/s)的交互性业务,它并未成为Internet的标准协议。为了改进SLIP,人们制订了点对点PPP(Point-to-Point Protocol)。RFC1661、RFC1662、RFC1663。-Ppp protocol introduced the main con
IP
- 我们都知道在 TCP/IP 的架构下,所有想连网络的电脑,不论是用何种方式连连网络,都必须要有一个 *唯一* 的 IP-address。举两个最常见的例子: 学校的电脑用网络线连在一起,是经由 ethernet 接口连连网络,则该 ethernet 接口必须要有 IP-addr., 如 freebsd.phys.ntu.edu.tw的 ethernet IP 为 140.112.52.20 。另一个常见的网络接口为 PPP, 通常是用在 modem 拨接上,当您从家里透过 modem 拨接上远端
UDP_Trans
- UDP传送与接收,撷取伺服器端的桌面,然后使用UDP的方式迈行传送。-UDP send and receive, retrieve server-side desktop, and then use UDP transmission line step manner.
packetforward-0.8.1.tar
- PakcetForward is a very useful command line tool that listens on one network interface for UDP and TCP packets and then injects them on the same or another network interface changing the destination address. NOTE: PacketForward is licensed and d
Tcpsend
- Command line tool to allow sending of text/hex data over a TCP socket connection to a specified port. Very useful for comms testing.
slip
- SLIP originally provided a service for transmitting IP packets over a serial line. Since then the protocol has become a standard and has been used for many other packet based communications. The protocol does NOT provide error protection, error corre
NetClient
- vc平台下基于套接字SOCKET实现网络聊天客户端-realize chatting on line by socket
TCP-line-procedures
- 基于TCP协议的P2P联机程序,在windows下的互联-P2P protocol based on TCP-line program, under the Internet in windows
QQ
- 采用基于TCP/IP协议连接方式, 实现了服务器转发,多客户连接,好友列表上线了自动更新,程序托盘,当有消息时,如果程序最小化,跟QQ一样,托盘的图标会闪烁.有提示音.实现ctrl+enter与enter转切换. 基本类似于QQ群. 由于是SQL库的,所以能很方便的集成到你的OA系统中。 (注意,请把"客户端目录的face和music两个文件夹放到您编译的目录中去,也就是放到Debug或者Release中去) 和这个是一样的,不过我的是源代码而已。可以自己定制。-Based on T
tcp-ip
- windows下的 tcp/ip网络通讯(同步) 初学者所用,小弟上传的都是自己写的。与别人的不同的是注释很清楚,是用纯c写socket的,没有用到微软的CSocket,虽然是用Visual Studio2010编的,其实质就是c语言,您电脑上没装VS2010把代码copy过去就行了-Under the windows tcp/ip network communication (synchronous) used by beginners, younger brother are uploade
IPDNS
- IPDNS管理器,是一个IP和DNS管理和快速切换的软件。它操 作简单,直观。通过该软件可以同时为电脑建立多套IP和DNS配 置方案,并可以在不同的IP和DNS配置方案之间方便、快速的进 行切换。特别是适合使用笔记本的用户或者经常在往返各地出差 的用户。使用该软件后可以省却您反复更改机器IP和DNS地址的烦恼。 特点: 1、可以快速的更改机器的IP和DNS,比系统自带IP和DNS设置程 序平均快2倍时间之上。 2、电脑IP和DNS地址进行管理,可以为电脑上
devping
- 设备在线监测,ping命令,数据库连接,定时设置-Equipment on-line monitoring, ping command, the database connection, set the timer
TCP
- 基于TCP协议实现客户端与服务器在约定的端口上进行数据传输。客户端程序仅知道服务器的主机名,并不知道服务器的IP地址。 客户端 1从命令行输入服务器的的主机名连接到服务器; 2获取本机的相关信息包括:IP地址、开通的端口、操作系统的名称、本机名称列表、操作系统版本号、硬件版本; 3将上述信息进行凯撒加密并发送给服务器; 4接受服务器返回的经处理后的字符串,并显示; 5当用户输入CTRL+D或者“bye”时终止连接并退出。 服务器端 1服务器等待客户连接,连接成功后
UDP
- 在两台计算机间完成一个简单的UDP传输。 客户端 (1) 循环从命令行读入一行字符串,并传递给服务器,由服务器对字符串进行反转,并将结果返回给客户端 (2) 客户端显示反转后的字符串 (3) 当客户按下“delete”健后,关闭套接字,结束程序 服务器端 (1) 收到客户端数据包,首先验证数据包源地址是否合法 (2) 接收客户的数据,并显示客户的IP地址和端口号 (3) 接收客户传来的字符串,反转后传递给客户 -Between the two computer