Welcome![Sign In][Sign Up]
Location:
Search - tcp.cc

Search list

[TCP/IP stackatcp

Description: 此程序修改ns2网络仿真器内的tcp.cc, 使之能符合ad hoc network内一个重要的TCP协议—ATCP. 本程序要放在ns2内, 配合ns2的环境执行. -NS2 network simulator within the tcp.cc. to enable it to meet the ad hoc network with an important TCP-ATCP. this procedure should be put on NS2, within NS2 implementation of the environment.
Platform: | Size: 24931 | Author: 黎智 | Hits:

[WinSock-NDISns-tcp

Description: 主要是对tcp.cc的分析,学习ns难得的好例子,相信通过代码分析,对做无线网络仿真有很大的帮助.-mainly for tcp.cc analysis, the study ns rare good example, I believe that through code analysis, right to do wireless network simulation will be very helpful.
Platform: | Size: 40066 | Author: 张翠翠 | Hits:

[WinSock-NDISttcpcliserv_liinux

Description: cc -c error.c sleepus.c ar -crv libmisc.a error.o sleepus.o ranlib libmisc.a # needed for a BSD-derived system the example programs from Chapter 1 of \"TCP/IP Illustrated, Volume 3: TCP for Transactions, HTTP, NNTP, and the UNIX Domain Protocols\" by W. Richard Stevens -cc -c error.c sleepus.c ar -crv libmisc.a error.o sleepus.o ranlib libmisc.a # needed for a BSD-derived system the example programs from Chapter 1 of \"TCP/IP Illustrated, Volume 3: TCP for Transactions, HTTP, NNTP, and the UNIX Domain Protocols\" by W. Richard Stevens
Platform: | Size: 17745 | Author: 去无踪 | Hits:

[DocumentsARP欺骗原理

Description: 一,什么是ARP协议? ARP协议是“Address Resolution Protocol”(地址解析协议)的缩写。在局域网中,网络中实际传输的是“帧”,帧里面是有目标主机的MAC地址的。在以太网中,一个主机要和另一个主机进行直接通信,必须要知道目标主机的MAC地址。但这个目标MAC地址是如何获得的呢?它就是通过地址解析协议获得的。所谓“地址解析”就是主机在发送帧前将目标IP地址转换成目标MAC地址的过程。ARP协议的基本功能就是通过目标设备的IP地址,查询目标设备的MAC地址,以保证通信的顺利进行。所以说从某种意义上讲ARP协议是工作在更低于IP协议的协议层。这也是为什么ARP欺骗更能够让人在神不知鬼不觉的情况下出现网络故障,他的危害更加隐蔽。 二,ARP欺骗的原理: 首先我们可以肯定一点的就是发送ARP欺骗包是通过一个恶毒的程序自动发送的,正常的TCP/IP网络是不会有这样的错误包发送的,而人工发送又比较麻烦。也就是说当黑客没有运行这个恶毒程序的话,网络上通信应该是一切正常的,保留在各个连接网络计算机上的ARP缓存表也应该是正确的,只有程序启动开始发送错误ARP信息以及ARP欺骗包时才会让某些计算机访问网络出现问题。接下来我们来阐述下ARP欺骗的原理。 第一步:假设这样一个网络,一个Hub或交换机连接了3台机器,依次是计算机A,B,C。 A的地址为:IP:192.168.1.1 MAC: AA-AA-AA-AA-AA-AA B的地址为:IP:192.168.1.2 MAC: BB-BB-BB-BB-BB-BB C的地址为:IP:192.168.1.3 MAC: CC-CC-CC-CC-CC-CC 第二步:正常情况下在A计算机上运行ARP -A查询ARP缓存表应该出现如下信息。 Interface: 192.168.1.1 on Interface 0x1000003 Internet Address Physical Address Type 192.168.1.3 CC-CC-CC-CC-CC-CC dynamic 第三步:在计算机B上运行ARP欺骗程序,来发送ARP欺骗包。 B向A发送一个自己伪造的ARP应答,而这个应答中的数据为发送方IP地址是192.168.10.3(C的IP地址),MAC地址是DD-DD-DD-DD-DD-DD(C的MAC地址本来应该是CC-CC-CC-CC-CC-CC,这里被伪造了)。当A接收到B伪造的ARP应答,就会更新本地的ARP缓存(A可不知道被伪造了)。而且A不知道其实是从B发送过来的,A这里只有192.168.10.3(C的IP地址)和无效的DD-DD-DD-DD-DD-DD mac地址。 第四步:欺骗完毕我们在A计算机上运行ARP -A来查询ARP缓存信息。你会发现原来正确的信息现在已经出现了错误。 Interface: 192.168.1.1 on Interface 0x1000003 Internet Address Physical Address Type 192.168.1.3 DD-DD-DD-DD-DD-DD dynamic 从上面的介绍我们可以清楚的明白原来网络中传输数据包最后都是要根据MAC地址信息的,也就是说虽然我们日常通讯都是通过IP地址,但是最后还是需要通过ARP协议进行地址转换,将IP地址变为MAC地址。而上面例子中在计算机A上的关于计算机C的MAC地址已经错误了,所以即使以后从A计算机访问C计算机这个192.168.1.3这个地址也会被ARP协议错误的解析成MAC地址为DD-DD-DD-DD-DD-DD的。 问题也会随着ARP欺骗包针对网关而变本加厉,当局域网中一台机器,反复向其他机器,特别是向网关,发送这样无效假冒的ARP应答信息包时,严重的网络堵塞就会开始。由于网关MAC地址错误,所以从网络中计算机发来的数据无法正常发到网关,自然无法正常上网。这就造成了无法访问外网的问题,另外由于很多时候网关还控制着我们的局域网LAN上网,所以这时我们的LAN访问也就出现问题了。 三,ARP欺骗的危害: 前面也提到了ARP欺骗可以造成内部网络的混乱,让某些被欺骗的计算机无法正常访问内外网,让网关无法和客户端正常通信。实际上他的危害还不仅仅如此,一般来说IP地址的冲突我们可以通过多种方法和手段来避免,而ARP协议工作在更低层,隐蔽性更高。系统并不会判断ARP缓存的正确与否,无法像IP地址冲突那样给出提示。而且很多黑客工具例如网络剪刀手等,可以随时发送ARP欺骗数据包和ARP恢复数据包,这样就可以实现在一台普通计算机上通过发送ARP数据包的方法来控制网络中任何一台计算机的上网与否,甚至还可以直接对网关进行攻击,让所有连接网络的计算机都无法正常上网。这点在以前是不可能的,因为普通计算机没有管理权限来控制网关,而现在却成为可能,所以说ARP欺骗的危害是巨大的,而且非常难对付,非法用户和恶意用户可以随时发送ARP欺骗和恢复数据包,这样就增加了网络管理员查找真凶的难度。
Platform: | Size: 2123 | Author: duohao163 | Hits:

[Internet-Networkttcpcliserv_liinux

Description: cc -c error.c sleepus.c ar -crv libmisc.a error.o sleepus.o ranlib libmisc.a # needed for a BSD-derived system the example programs from Chapter 1 of "TCP/IP Illustrated, Volume 3: TCP for Transactions, HTTP, NNTP, and the UNIX Domain Protocols" by W. Richard Stevens -cc-c error.c sleepus.c ar-crv libmisc.a error.o sleepus.o ranlib libmisc.a# needed for a BSD-derived system the example programs from Chapter 1 of "TCP/IP Illustrated, Volume 3: TCP for Transactions, HTTP, NNTP, and the UNIX Domain Protocols" by W. Richard Stevens
Platform: | Size: 17408 | Author: | Hits:

[TCP/IP stackatcp

Description: 此程序修改ns2网络仿真器内的tcp.cc, 使之能符合ad hoc network内一个重要的TCP协议—ATCP. 本程序要放在ns2内, 配合ns2的环境执行. -NS2 network simulator within the tcp.cc. to enable it to meet the ad hoc network with an important TCP-ATCP. this procedure should be put on NS2, within NS2 implementation of the environment.
Platform: | Size: 24576 | Author: 黎智 | Hits:

[Internet-Networkns-tcp

Description: 主要是对tcp.cc的分析,学习ns难得的好例子,相信通过代码分析,对做无线网络仿真有很大的帮助.-mainly for tcp.cc analysis, the study ns rare good example, I believe that through code analysis, right to do wireless network simulation will be very helpful.
Platform: | Size: 39936 | Author: 张翠翠 | Hits:

[Linux-Unixsrc

Description: 与远程服务期的指定端口建立连接并发送测试数据,unix/LINUX redhat 2.6.18-92.el5上CC/gcc编译通过-it builds up a tcp connection with remoted server and assigned port,after connection built, it sends test data to the server, compiled with cc/gcc under unix/linux redhat 2.6.18-92.el5
Platform: | Size: 12288 | Author: wang yong | Hits:

[TCP/IP stackModbusTCPClient

Description: Anybus 芯片的Modbus TCP 通讯源码-Modbus TCP for anybus
Platform: | Size: 2048 | Author: ml | Hits:

[JSP/JavaCC_chat

Description: CC chat,用java写的简单聊天程序,包含服务器端和客户端,使用tcp协议。-CC chat, using java to write a simple chat program, including server and client, using the tcp protocol.
Platform: | Size: 54272 | Author: | Hits:

[Process-Threadlingyun2009

Description: 重写线程化操作模块,集群操作时,控制端自动检测CPU使用率而调整工作线程,更加稳定 加强了内网共享传播,文件感染(仅供公司或者网吧测试局域网安全性) DDOS模块添加多种攻击方式,加入了CC变异,无限CC,HTTP空GET,TCP多连接,UDP碎片攻击,发包稳定高效。自带的键盘记录可以穿透杀软的保险箱而正常工作,真正的一键代理,开启3389,内网映射,文件管理支持断点续传 。-Rewrite the threading operation module, cluster operation, the control-side CPU utilization and adjust automatically detect the work of threads, more stability and enhanced communication within the network share, file infection (for companies or Internet cafes test LAN security) DDOS module to add a variety of attacks, joined the CC variation, unlimited CC, HTTP empty GET, TCP and more connection, UDP fragmentation attack, stable and efficient contracting. The keyboard comes with recording software can penetrate to kill the safe and normal operation, the real agent of a key to open the 3389, internal network mapping, document management support for HTTP.
Platform: | Size: 3500032 | Author: 刘朝 | Hits:

[e-languageHTTP

Description: HTTP断点续传模块,易语言专用 包源码 请注意参数类型,不然会出现下载10KB程序退出现象! 末日工作室开发制作!http://1c107.j2.tcp.cc/ 技术论坛,刚刚创立,没有人,请大家下了的多捧场!-HTTP HTTP modules, easy language-specific packages source Please note that the parameter type, or download the 10KB program appears to exit the phenomenon! End studio production! http://1c107.j2.tcp.cc/ Technology Forum, just created, no one, please join under a multi!
Platform: | Size: 5120 | Author: jj | Hits:

[Windows Developcc

Description: winsocket编程头文件说明 tcp udp传输-winsocket the programming header file description tcp udp transfer
Platform: | Size: 140288 | Author: cc | Hits:

[Internet-Networkheji

Description: 集合于CC,UDP,TCP多功能攻击软件,速度和威力相当可观。-Collection in CC, UDP, TCP the multifunctional attack software, speed and considerable power.
Platform: | Size: 74752 | Author: 黑色尖兵 | Hits:

[Internet-NetworkDesperate-DDOS

Description: 绝望者DDOS集群全套源码,你懂的!里面加入的CC模式SYN模式TCP模式,以及下载功能等等,非常不错的,大家抓紧下载把-Desperate DDOS cluster full source code, you know! I added the CC mode mode TCP SYN mode, and the download function and so on, very good, we pay close attention to download the
Platform: | Size: 10186752 | Author: 刘帅 | Hits:

[Linux driverbdfw_v12.0

Description: 阻止DOS攻击   TearDrop、Land、Jolt、IGMP Nuker、Boink、Smurf、Bonk、BigPing、OOB等数百种。   抵御DDOS攻击   SYN/ACK Flood、UDPFlood、ICMP Flood、TCP Flood等所有流行的DDOS攻击。    拒绝CC等TCP全连接攻击   自动阻断某一IP对服务器特定端口的大量TCP全连接资源耗尽攻击,包括抵御多种CC变种攻击。   防止脚本攻击   专业防范ASP、PHP、PERL、JSP等脚本程序的洪水式Flood调用导致数据库和WEB崩溃的拒绝服务攻击。 -Preventing DOS attacks TearDrop, Land, Jolt, IGMP Nuker, Boink, Smurf, Bonk, BigPing, OOB hundreds of species. Against DDOS attacks The SYN/ACK Flood, UDPFlood, ICMP Flood, such as TCP Flood all popular DDOS attacks. Refused to CC all TCP connection attack, etc Automatic block an IP to the server to a specific port of TCP connection resources exhausted all attacks, including attacks against a variety of CC variety. To prevent the scripting Professional prevention ASP, PHP, PERL, JSP and other script Flood type Flood calls to crash the and WEB denial of service attacks.
Platform: | Size: 2355200 | Author: Las | Hits:

[Crack Hackdx

Description: 上线主机稳定,连接速度快,超强攻击效果,网吧经常掉线?网站经常被攻击?站长很闹心!服务器经常连接不上?非常郁闷!你们很有可能遭受竞争对手的恶意攻击leader网络工作室成立于2009年,自成立以来一直致力于网络软件开发,网站与服务器防护以及网络压力DDOS等领域的技术发展与创新。现在将最新研发的成果放出来竭诚服务于网站站长与服务器管理员 1.穿透cc压力测试集合了市面上所有攻击软件优点取得了革命性突破(独立编写代码.很有效的防止放火墙公司修改参数进行防御攻击.) 2.软件控制端以及服务端,升级及时,尽量保证客户肉鸡丢失.减少不必要的损失! 3.改善了传统攻击软件的内核缺陷.增加了优化了肉鸡连接服务端线程.减少了占资源等问题....更多功能请看演示动画..... 4.服务端:重启后无进程,非注入,启动速度快,文件体积30K,方便下载。攻击完全不占CPU,不卡。 5.攻击模式:ICMP洪水SYN洪水、TCP洪水
Platform: | Size: 664576 | Author: | Hits:

[Internet-Networktcpsequence.cc.tar

Description: tcp sequence using pmipv6
Platform: | Size: 4096 | Author: kanta kaliramana | Hits:

[OS programwebddos-master

Description: CC DDOS工具,对网站进行压力测试。多线程发包,建立大量TCP连接,利用畸形HTTP查询请求消耗服务器CPU资源(CC DDOS tool, using multithreading, to test the stress of a web site)
Platform: | Size: 300032 | Author: lcmm | Hits:

CodeBus www.codebus.net