1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html> <head>
<link rel="stylesheet" type="text/css" href="http://www.neville-neil.com/nnstyle.css">
<center>
<title>Packet Construction Set</title>
<h1><a href="http://sourceforge.net/projects/pcs">Packet
Construction Set</a></h1>
<img src="./IPPacket.jpg" alt="IPv4 Packet Format from RFC 791">
<h3>IPv4 Packet Format from RFC 791</h3>
</center>
</head>
<body>
<h1>Overview</h1>
<a href="http://sourceforge.net/projects/pcs">PCS</a> is a set of
<a href="http://www.python.org">Python</a> modules and objects that
make building network protocol code easier for the protocol
developer. The core of the system is the pcs module itself which
provides the necessary functionality to create classes that
implement packets.
<br>
<br>
<a href="http://sourceforge.net/project/showfiles.php?group_id=149474">Download Now!</a>
<h1>Example Code</h1>
<a href="http://sourceforge.net/projects/pcs">PCS</a> comes complete
with several different example applications including:
<ul>
<li><a href="./http_get.py">http_get.py</a> is a simple command line
program to grab a web page.
<li><a href="./arpwhohas.py">arpwhohas.py</a> generates ARP queries
given a set of IP and hardware addresses.
<li><a href="./pcap_info.py">pcap_info.py</a> prints the statistics on
packets contained in a pcap dump file.
<li><a href="./tcpslice.py">tcpslice.py</a> will carve a set of
packets out of a pcap dump file.
</ul>
The <verb>scripts</verb> directory in the release contains the
complete set of example code.
<h1>Documentation</h1>
Documentation is provided in by the <a href="./pcs.pdf">PCS Manual</a>
and, automatically, via <a href="./html/namespaces.html">Doxygen</a>.
<br>
<br>
<br>
<br>
<br>
<center>
<a
href="http://sourceforge.net"><img
src="http://sflogo.sourceforge.net/sflogo.php?group_id=149474&type=1"
width="88" height="31" border="0" alt="SourceForge.net Logo" /></a>
</center>
</body> </html>
|