Browse Source

Added forgate (1.0) - A packet capture tool for switched networks

early
Christian Wiese 17 years ago
parent
commit
8a652e6e9b
  1. 26
      network/forgate/forgate.cache
  2. 35
      network/forgate/forgate.desc
  3. 32
      network/forgate/pcap-bpf.patch

26
network/forgate/forgate.cache

@ -0,0 +1,26 @@
[TIMESTAMP] 1190072120 Tue Sep 18 01:35:20 2007
[BUILDTIME] 100 (9)
[SIZE] 0.06 MB, 8 files
[DEP] 00-dirtree
[DEP] bash
[DEP] binutils
[DEP] bzip2
[DEP] coreutils
[DEP] diffutils
[DEP] findutils
[DEP] gawk
[DEP] gcc
[DEP] glibc
[DEP] grep
[DEP] libnet
[DEP] libpcap
[DEP] linux-header
[DEP] make
[DEP] mktemp
[DEP] patch
[DEP] sed
[DEP] sysfiles
[DEP] tar
[DEP] util-linux

35
network/forgate/forgate.desc

@ -0,0 +1,35 @@
[COPY] --- SDE-COPYRIGHT-NOTE-BEGIN ---
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY]
[COPY] Filename: package/.../forgate/forgate.desc
[COPY] Copyright (C) 2007 The OpenSDE Project
[COPY]
[COPY] More information can be found in the files COPYING and README.
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; version 2 of the License. A copy of the
[COPY] GNU General Public License can be found in the file COPYING.
[COPY] --- SDE-COPYRIGHT-NOTE-END ---
[I] A packet capture tool for switched networks
[T] Forgate (Forge Gateway) is a tool that allows you to capture traffic
[T] from a third party in a switched environment at the expense of a
[T] slight increase in latency to that third party host. Utilizing ARP
[T] cache poisoning, packet capture, and packet reconstruction techniques,
[T] it works with nearly all TCP, ICMP, and UDP IPv4 traffic flows.
[U] http://www.intrusense.com/software/forgate/
[A] Darren Bounds <dbounds@intrusense.com>
[M] Christian Wiese <morfoh@opensde.org>
[C] extra/tool
[L] GPL
[S] Stable
[V] 1.0
[P] X -----5---9 800.000
[D] 0 4g8-1.0.tgz http://www.intrusense.com/software/forgate/

32
network/forgate/pcap-bpf.patch

@ -0,0 +1,32 @@
--- 4g8-1.0/src/globals.h.orig 2007-09-18 01:17:36.000000000 +0200
+++ 4g8-1.0/src/globals.h 2007-09-18 01:30:41.000000000 +0200
@@ -31,7 +31,13 @@
#include <libnet.h>
#include <pcap.h>
#include <sys/types.h>
+
+#ifdef HAVE_BPF
#include <net/bpf.h>
+#elif HAVE_PCAP
+#include <pcap-bpf.h>
+#endif
+
#include <signal.h>
#include <time.h>
#include <stdio.h>
--- 4g8-1.0/src/main.h.orig 2007-09-18 01:31:38.000000000 +0200
+++ 4g8-1.0/src/main.h 2007-09-18 01:32:30.000000000 +0200
@@ -26,7 +26,13 @@
#include <libnet.h>
#include <pcap.h>
#include <sys/types.h>
+
+#ifdef HAVE_BPF
#include <net/bpf.h>
+#elif HAVE_PCAP
+#include <pcap-bpf.h>
+#endif
+
#include <signal.h>
#include <time.h>
#include <stdio.h>
Loading…
Cancel
Save