summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2005-08-27Honor CFLAGS. This makes the package build on Darwin.minskim2-1/+11
2005-08-26update to 1.4drochner4-34/+13
changes: - New and improved nemesis - New in nemesis 1.4: nemesis-ethernet and nemesis-ip - Windows support (link-layer injection only) - Useful man pages - Single binary - Improved cross-platform support via GNU autotools - Easier to use - Nemesis will attempt to fill in as many details as possible in a packet, thus requiring fewer or even no command line switches. - Each protocol builder attempts to build a proper packet by default. - Organized code base - The network header structures in libnet proved useful so nemesis now uses them where appropriate. - Code is re-used wherever possible resulting in a much more concise code base. - Full payload functionality - Payloads can now contain NULLs within them and full-size packets are available on all supported platforms except Windows. - IP and TCP options support - All nemesis injectors (excluding ARP and Ethernet) now support IP options via -O <IP options file>. - All nemesis injectors using TCP as a transport protocol now support TCP options via -o <TCP options file>. - Improved IP and TCP functionality - Full IP fragmentation support via new -F command line semantics. - ECN support in TCP with the addition of -fE (ECE) and -fC (CWR).
2005-08-26update to 2.2.6.1drochner3-8/+38
changes: -fixes for bugs and memory leaks -Added some API to SoupServer and SoupSocket to help fix a long-standing rcd bug.
2005-08-26Update freerdist to 0.92nb2abs3-3/+24
Defining STATFS_SVR4 sets the .h to use statsvfs(), which is fine, but it probably helps if the .c file actually calls anything when STATFS_SVR4 is defined. Fixes freespace being reported as zero in NetBSD 3.x and later.
2005-08-26make configure-option --enable-debug compilespz17-9/+1846
make RtConfig -config junos work fix a bug regarding Cisco export filters in RtConfig
2005-08-26Changes 6.6.2:adam3-18/+16
Fixed tcpdump.c to trace IP packets buried under VLAN headers. Changes 6.6.3: Added a function MissingData() in trace.c to check if TCP segments were missing or were truncated when the -e option is given to extract contents. Changes 6.6.4: Adding in the INBOUNDS module into the main tcptrace development tree. It is NOT built in by default though; you need to uncomment a line in Makefile.in to enable it. Changes 6.6.5: * Josh fixed the file format searching order, putting tcpdump format to the end in file_formats.h as a work around for libpcap brokenness. * Fixed Mfopen() in mfiles.c to open content data files that we generate in "binary" mode - by changing fopen mode from "w" to "wb+" and "a" to "ab+". The 'b' is dummy in UNIX systems, but seems to have some semantic in the Windows world. * Fixed QuitSig() function in tcptrace.c by adding a call to udptrace_done() so that we print out UDP connection stats too (if one were piping live tcpdump traffic to tcptrace and "ctrl-c"-ed it in the middle, for example). On the way, also fixed the arbitrary "buf[4096]" declaration to be written correctly as "buf[COMP_HDR_SIZE]" in the PipeFitting() function. Changes 6.6.6: Fixed the callback function in tcpdump.c to prevent garbage data from getting into the ip_buf buffer. Changes 6.6.7: Fixed bugs found in the AVL search function that had major bugs / complexity issues.
2005-08-25rewrite this to reflect what this package actually is and does, notgrant1-7/+3
how it works.
2005-08-24Catch up distinfo for removal of patch-aa on last upgrade.jwise1-2/+1
Noted by Matthew Luckie.
2005-08-24sort.salo1-2/+2
2005-08-24Move hack to avoid gcc optimizer bug on arm platforms into hacks.mk.schmonz4-10/+20
2005-08-23The real user name in PKG_USERS does not need to be escaped with doublerillig10-21/+21
backslashes anymore. A single backslash is enough. Changed the definition in all affected packages. For those that are not caught, an additional check is placed into bsd.pkginstall.mk.
2005-08-21simplify some conditionals, indentgrant1-5/+5
2005-08-20Add one missing locale file.kristerw2-2/+4
Bump PKGREVISION.
2005-08-20Use REQD_DIRS instead of MAKE_DIRS for directories under ${PREFIX} sojlam1-2/+3
that these directories will be conditionally removed (based on reference counts), regardless of the value of PKG_CONFIG. Bump the PKGREVISION for packages that were modified as a result.
2005-08-19Use PTHREAD_LDFLAGS and PTHREAD_LIBS instead of hard-coded -lpthread.reed2-4/+4
(Fixed build on DragonFly.)
2005-08-19Merge CONF_FILES/SUPPORT_FILES and CONF_FILES_PERMS/SUPPORT_FILES_PERMSjlam5-19/+17
as the INSTALL and DEINSTALL scripts no longer distinguish between the two types of files. Drop SUPPORT_FILES{,_PERMS} and modify the packages in pkgsrc accordingly.
2005-08-19Convert DJB_ERRNO_HACK to a "djbware-errno-hack" option availableschmonz2-5/+3
in all packages using djbware.mk. For now, keep the same default, avoiding PKGREVISION bumps.
2005-08-19Whitespace.schmonz2-4/+2
2005-08-18Changes 0.8.6:adam2-17/+15
* Support for building on Win32 (Tor Lillqvist)
2005-08-18fix config.h to include <alloca.h> if found (ORBIT_HAVE_ALLOCA_H wasgrant2-7/+11
not being defined, so alloca.h was never included). fixes build with sunpro.
2005-08-18this needs flex (not lex) to build.grant1-2/+2
2005-08-18whitespace fixgrant1-2/+1
2005-08-17Remove net/openvpn-current as net/openvpn now tracks a more recent stablejlam6-177/+0
version of OpenVPN.
2005-08-17Remove net/openvpn-current as net/openvpn now tracks a more recent stablejlam1-2/+1
version of OpenVPN.
2005-08-17Update net/openvpn to version 2.0.1. Major changes from version 1.6.0jlam9-150/+378
include: Adding a highly scalable server for handling multiple TCP/UDP clients over point-to-point TUN interfaces, all using a single port number. The server has been designed so that it can run with reduced privilege. On the client side, "pull" has been added, which basically says "accept certain config file options which the server pushes back to you." The major win of the push/pull capability is that the same client configuration file can be used on each client provided each client has its own set of SSL/TLS keys which have been signed by the master CA. A management interface has been developed which can be used to remotely control or centrally manage an OpenVPN daemon. "remote" can now specify a set of machines, or a hostname can be configured with multiple addresses in DNS. A server will be randomly chosen from the list, and if the connect fails, another will be tried (see the "remote-random" option) A package for easy RSA key management (easy-rsa-2.0rc1) has been included to aid in generating SSL keys and certificates for use with OpenVPN.
2005-08-17Update to 0.9.1-438. Main change:tv3-9/+9
Fix a serious bug in fragment sizes of files being >= 256K. The bug wasted a lot of data store space and traffic.
2005-08-17Add .include "../../x11/tk83/buildlink3.mk" to fix build problem.hiramatsu1-2/+2
2005-08-15fix patch checksum mismatch, noticed by Matthias Schelerdrochner1-2/+2
2005-08-14PLIST fix as pointed out by Krister on pkgsrc-bulk@adrianp2-2/+4
Bump PKGREVISION
2005-08-13Update snort to 2.4.0adrianp6-2964/+27
If you are using this package make note of the distribution change mentioned below. I have update the MESSAGE to inform users of this and there is now also a net/snort-rules package with the community rules. > [*] Distribution Change > * Rules are no longer distributed as part of the Snort releases, they are > available as a separate download from snort.org. This was done for > three reasons: > 1) To better manage the new rules licensing. > 2) To reduce the size of the engine download. > 3) To move the thousands of documentation files for the rules into > the rules tarballs. If you've ever checked Snort out of CVS you'll > know why this is a Good Thing. > > [*] New additions > * Added new IP defragmentation preprocessor, Frag3. The frag3 preprocessor > is a target-based IP defragmentation module, and is intended as a > replacement for the frag2 module. Check out the README.frag3 for full > info on this new preprocessor. > > * Libprelude support has been added (enable with --enable-prelude). > Thanks Yoann Vandoorselaere! > > * An "ftpbounce" rule detection plugin was added for easier detection of > FTP bounce attacks. > > * Added a new Snort config option, "ignore_ports," to ignore packets > based on port number. This is similar to bpf filters, but done within > snort.conf. > > [*] Improvements > * Snort startup messages printed in syslog now contain a PID before each > entry. Thanks Sekure for initially bringing this up. > > * Stream4: Performance improvements. > > * Stream4: Added 'max_session_limit' option which limits number of > concurrent sessions tracked. Added favor_old/favor_new options that > affect order in which packets are put together for reassembly. > > * Stream4: New configuration options to manage flushpoints for improved > anti-evasion. The flush_behavior option selects flushpoint management > mode. New flush_base, flush_range, and flush_seed manage randomized > flushing. Check out the snort.conf file for full config data on the > new flush options. > > * Added two more alerts for BackOrifice client and server packets. This > allows specific alerts to be suppressed. > > * PerfMon preprocessor updated to include more detailed stats for rebuilt > packets (applayer, wire, fragmented & TCP). Also added 'atexitonly' > option that dumps stats at exit of snort, and command line -Z flag to > specify the file to which stats are logged. > > * Added new Http Inspect config item, "tab_uri_delimiter," which if > specified, lets a tab character (0x09) act as the delimiter for a URI. > > * Added a '-G' command line flag to snort that specifies the Snort > instance log identifier. It takes a single argument that can be either > hex (prefaced with 0x) or decimal. The unified log files will include > the instance ID when the -G flag is used. > > * "Same SRC/DST" (sid 527) and "Loopback Traffic" (sid 528) are now > handled in the IP decoder. Those sids are now considered obsolete. > > * Http_Inspect "flow_depth" option now accepts a -1 value which tells > Snort to ignore all server-side traffic. > > * RPMs have been updated to be more portable, and also now include a > "--with inline" option for those wanting to build Inline RPMs. Thanks > Daniel Wittenberg and JP Vossen for your help! > > * Many, many bug fixes have also gone into this release, please see the > ChangeLog for details.
2005-08-13Fix PKGNAME as the rules follow their own versioningadrianp1-2/+2
Ride initial import
2005-08-13+ snort-rulesadrianp1-1/+2
2005-08-13The Community Rulesets contain rules submitted by members of the open sourceadrianp4-0/+82
community. While these rules are available as is, the VRT performs basic tests to ensure that new rules will not break Snort. These rules are distributed under the GPL and are freely available to all open source Snort users.
2005-08-13Add p5-Net-Packetadrianp1-1/+2
2005-08-13This module is a unified framework to craft, send and receive packets atadrianp4-0/+39
layers 2, 3, 4 and 7. Basically, you forge each layer of a frame (Net::Packet::IPv4 for layer 3, Net::Packet::TCP for layer 4 ; for example), and pack all of this into a Net::Packet::Frame object. Then, you can send the frame to the network, and receive it easily, since the response is automatically searched for and matched against the request.
2005-08-13Add p5-Net-IPv6Addradrianp1-1/+2
2005-08-13Net::IPv6Addr provides functions for parsing IPv6 addresses in alladrianp4-0/+30
formats described by RFC1884. If Math::Base85 is installed, formats described in RFC1924 are also valid. It will generate "IP6.INT." strings (as described in RFC1886) if you are inclined to play with DNS records.
2005-08-13Add p5-Net-IPv4Addradrianp1-1/+2
2005-08-13Net::IPv4Addr provides functions for parsing IPv4 addresses bothadrianp4-0/+27
in traditional address/netmask format and in the new CIDR format. There are also methods for calculating the network and broadcast address and also to see check if a given address is in a specific network.
2005-08-13Add include/pcap-int.h which is needed by some programsadrianp2-3/+7
Bump to nb2
2005-08-12update to 1.1.17drochner2-6/+6
changes: -Enabled code for shutting down idle sockd processes. -Return immediate error if username/password is wrong -better preserve TCP semantics across connections -bugfixes
2005-08-12fix false complaints about SASL authenticated LDAP bind replies:drochner3-2/+26
according to rfc2251 the credentials are indeed "context specific" (in terms of ASN.1) bump PKGREVISION
2005-08-11Remove outdated "ra-pna-proxy" package. Current versions of RealPlayertron8-152/+1
and other streaming media client don't use that protocol any more.
2005-08-11update to 2.2.3drochner2-6/+6
changes: * fix a bug when uncomplete aor is provided in registration. * forget to allow record-routing for SUBSCRIBE and NOTIFY. * new option to reload regularly ip for server without fixed ip. * Send 403 Forbidden for wrong login. (instead of 404)
2005-08-11+sipsakdrochner1-1/+2
2005-08-11import sipsak-0.9.1, a commandline SIP tester, based on the work ofdrochner5-0/+175
Georg Schwarz in pkgsrc-wip
2005-08-11Set MAINTAINER to tech-pkg. A posting to tech-pkg said the maintainerreed1-2/+2
is not the maintainer.
2005-08-11Changes 0.95:adam6-65/+59
* Changes in zebra ** IRDP support is added. * Changes in ripd ** Set receive UDP socket buffer to large value. * Changes in ospfd ** Fix problem of OpenBSD-3.4 IP header length treatment. * Changes in ospf6d ** Area support is added. * Changes in bgpd ** Old commands are removed "show ipv6 summary" "show ipv6 mbgp summary" ** New ospf6d implementation is introduced. This is rewrite of whole ospf6d code to make it far much better than old code. * Changes in vtysh ** Many bugs and problems are fixed. All of user of vtysh should update to zebra-0.95.
2005-08-11PLIST corrected, disable debug, enable pkgsrc optimisationadam4-16/+43
2005-08-10Remove the abuse of buildlink that was pkg-config/buildlink3.mk. Thatjlam24-62/+52
file's sole purpose was to provide a dependency on pkg-config and set some environment variables. Instead, turn pkg-config into a "tool" in the tools framework, where the pkg-config wrapper automatically adds PKG_CONFIG_LIBDIR to the environment before invoking the real pkg-config. For all package Makefiles that included pkg-config/buildlink3.mk, remove that inclusion and replace it with USE_TOOLS+=pkg-config.