This file is indexed.

/usr/share/wireshark/randpkt.html is in libwireshark-data 1.6.7-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>randpkt - The Wireshark Network Analyzer 1.6.7</title>
<link rel="stylesheet" href="../docbook/ws.css" type="text/css" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:root@localhost" />
</head>

<body>


<!-- INDEX BEGIN -->
<div name="index">
<p><a name="__index__"></a></p>
<!--

<ul>

	<li><a href="#name">NAME</a></li>
	<li><a href="#synopsis">SYNOPSIS</a></li>
	<li><a href="#description">DESCRIPTION</a></li>
	<li><a href="#options">OPTIONS</a></li>
	<li><a href="#examples">EXAMPLES</a></li>
	<li><a href="#see_also">SEE ALSO</a></li>
</ul>

-->


</div>
<!-- INDEX END -->

<p>
</p>
<h1><a name="name">NAME</a></h1>
<p>randpkt - Random Packet Generator</p>
<p>
</p>
<hr />
<h1><a name="synopsis">SYNOPSIS</a></h1>
<p><strong>randpkt</strong>
[&nbsp;<strong>-b</strong>&nbsp;&lt;maxbytes&gt;&nbsp;]
[&nbsp;<strong>-c</strong>&nbsp;&lt;count&gt;&nbsp;]
[&nbsp;<strong>-t</strong>&nbsp;&lt;type&gt;&nbsp;]
&lt;filename&gt;</p>
<p>
</p>
<hr />
<h1><a name="description">DESCRIPTION</a></h1>
<p><strong>randpkt</strong> is a small utility that creates a <strong>libpcap</strong> trace file
full of random packets.</p>
<p>By creating many randomized packets of a certain type, you can
test packet sniffers to see how well they handle malformed packets.
The sniffer can never trust the data that it sees in the packet because
you can always sniff a very bad packet that conforms to no standard.
<strong>randpkt</strong> produces <em>very bad</em> packets.</p>
<p>When creating packets of a certain type, <strong>randpkt</strong> uses a sample
packet that is stored internally to <strong>randpkt</strong>. It uses this as the
starting point for your random packets, and then adds extra random
bytes to the end of this sample packet.</p>
<p>For example, if you choose to create random ARP packets, <strong>randpkt</strong>
will create a packet which contains a predetermined Ethernet II header,
with the Type field set to ARP. After the Ethernet II header, it will
put a random number of bytes with random values.</p>
<p>
</p>
<hr />
<h1><a name="options">OPTIONS</a></h1>
<dl>
<dt><strong><a name="b_maxbytes" class="item">-b &lt;maxbytes&gt;</a></strong></dt>

<dd>
<p>Default 5000.</p>
<p>Defines the maximum number of bytes added to the sample packet.
If you choose a <strong>maxbytes</strong> value that is less than the size of the
sample packet, then your packets would contain only the sample
packet... not much variance there! <strong>randpkt</strong> exits on that condition.</p>
</dd>
<dt><strong><a name="c_count" class="item">-c &lt;count&gt;</a></strong></dt>

<dd>
<p>Default 1000.</p>
<p>Defines the number of packets to generate.</p>
</dd>
<dt><strong><a name="t_type" class="item">-t &lt;type&gt;</a></strong></dt>

<dd>
<p>Default Ethernet II frame.</p>
<p>Defines the type of packet to generate:
        arp     Address Resolution Protocol
        bgp     Border Gateway Protocol
        bvlc    BACnet Virtual Link Control
        dns     Domain Name Service
        eth     Ethernet
        fddi    Fiber Distributed Data Interface
        giop    General Inter-ORB Protocol
        icmp    Internet Control Message Protocol
        ip      Internet Protocol
        llc     Logical Link Control
        m2m     WiMAX M2M Encapsulation Protocol
        megaco  MEGACO
        nbns    NetBIOS-over-TCP Name Service
        ncp2222 NetWare Core Protocol
        sctp    Stream Control Transmission Protocol
        syslog  Syslog message
        tds     TDS NetLib
        tcp     Transmission Control Protocol
        tr      Token-Ring
        udp     User Datagram Protocol
        usb     Universal Serial Bus
        usb-linux       Universal Serial Bus with Linux specific header</p>
</dd>
</dl>
<p>
</p>
<hr />
<h1><a name="examples">EXAMPLES</a></h1>
<p>To see a description of the randpkt options use:</p>
<pre>
    randpkt</pre>
<p>To generate a capture file with 1000 DNS packets use:</p>
<pre>
    randpkt -b 500 -t dns rand_dns.pcap</pre>
<p>To generate a small capture file with just a single LLC frame use:</p>
<pre>
    randpkt -b 100 -c 1 -t llc single_llc.pcap</pre>
<p>
</p>
<hr />
<h1><a name="see_also">SEE ALSO</a></h1>
<p><code>pcap(3)</code>, <code>editcap(1)</code></p>

</body>

</html>