| Projects on Google Code | Results 1 - 10 of 37 |
Firewall Emulator
The assignment is to write a "stateless packet filter" and client/test
case generator. Note carefully: both parts are necessary; a
significant part of the grade on this assignment will depend on
the client+test case generator.
The firewall piece isn't a real firewall, sin...
Packet,
Simple,
Gaurav,
Columbia,
Spring,
Network,
Steve,
Java,
Filter,
Bellovin,
Firewall,
Pandey,
University,
Security,
2009
fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols.
{{{
>>> from dpkt.ip import IP
>>> from dpkt.icmp import ICMP
>>> ip = IP(src='\x01\x02\x03\x04', dst='\x05\x06\x07\x08', p=1)
>>> ip.v
4
>>> ip.src
'\x01\x02\x03\x04'
>>> ...
pacraft is a command line tool for UNIX-like systems used to inject packets. difference between pacraft and similar projects is that pacraft does not use libnet. this will allow injection of packets with completely arbitrary field values (i.e. wrong checksum). in addition pacraft will allow users to...
simplified object-oriented Python extension module for libpcap - the current tcpdump.org version, the legacy version shipping with some of the BSD operating systems, and the WinPcap port for Windows.
sample usage:
{{{
>>> import dpkt, pcap
>>> pc = pcap.pcap()
>>> pc.setfilter('icmp')
>>> ...
=PacketFu=
PacketFu is a mid-level packet manipulation library for Ruby. The current version is 0.2.0, as of June 13, 2009.
==Bullets==
* "Yet Another Packet Factory"
* "An IDS in Five Lines or Less"
* "Irb is the new Hping"
==Requirements==
* Ruby (1.8.6 or later)
!BinDa...
ruby,
packet,
network,
security,
libpcap,
ids,
wireshark,
scruby,
pcaprub,
tcp,
udp,
ip,
packet-fu,
パケットフ,
パケット
==Packetforward==
Packetforward is an IP packet capture and forward tool based on libpcap and libnet. It is a 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. It has options for packet capture filtering a...
Fine Packet Builder(简称FPB)是开源免费数据包生成与协议分析工具,同时还提供了著名的[http://www.winpcap.org/ PCAP]数据包截取软件包的Java封装。FPB使用独创的协议语法表示语言(Protocol Syntax Notation)来定义协议的格式与编码和解码规则,可以在基本不编程(或很少编程,如checksum计算)的情况下定义自己的协议。协议语法表示语言是建立在[http://www.ttcn-3.org/ TTCN-3] 语言的基础上的,它继承了[http://www.ttcntest.com/ TTCN-3]语言的协议定义相关部分的语法...
= WTF? =
netsniff-ng is a high performance linux network sniffer for packet inspection. Basically, it is similar to tcpdump, but it doesn't need one syscall per packet. Instead, it uses an memory mapped area within kernelspace for accessing packets without copying them to userspace (zero-copy mec...
Library features:
* send/receive packets
* encrypt, decrypt, basic reading/writing packets.
* Supports T1/T1.5/T2/T2.2/T2.3 (Kamael, Hellbound, Gracia, Gracia part 2, Gracia Final).
* Language: C++
* OS: Windows / Linux
* Aion support incoming...
Library uses some information fr...
Impacket is a collection of Python classes focused on providing access to network packets. Impacket allows Python developers to craft and decode network packets in simple and consistent manner. It includes support for low-level protocols such as IP, UDP and TCP, as well as higher-level protocols suc...