Commit graph

3384 commits

Author SHA1 Message Date
jlam
330e6da959 Pull in change from Heimdal CVS committed on 20051012 where the field
in a publicly-exported structure was renamed from "private" to
"opt_private".  This allows <krb5.h> to be used by C++ compilers.
Bump the PKGREVISION to 1.
2005-10-26 16:44:24 +00:00
jlam
5f8003f633 Update security/heimdal to 0.7.1 (approved by lha). We drop support
for the "db4" option and just rely on the appropriate BDB_* settings
via bdb.buildlink3.mk.  Also, we tweak the builtin.mk file so use
krb5-config, if it's available, to check the version of the built-in
heimdal.  Patches patch-ab, patch-ae and patch-af have been sent back
upstream and will be incorporated into future Heimdal releases.

Changes between version 0.6.5 and version 0.7.1 include:

 * Support for KCM, a process based credential cache
 * Support CCAPI credential cache
 * SPNEGO support
 * AES (and the gssapi conterpart, CFX) support
 * Adding new and improve old documentation
 * Bug fixes
2005-10-26 15:12:45 +00:00
cube
b62e58b21b Add a patch for CVE-2005-2959: SHELLOPTS and PS4 have to be cleared from
the environment before letting the user execute bash scripts.

Bump PKGREVISION.

From Debian.
2005-10-25 22:05:55 +00:00
drochner
6c1fb29974 update to 0.8
changes:
* Fixed crasher in seahorse-agent when used with GPG 1.4.2
* Now works with gedit 2.12 [Mike Gardiner]
* Many crasher and smaller fixes.
2005-10-25 17:43:19 +00:00
drochner
9d3480f6dc update to 2.0.1
changes:
-added sha256 module
-Add PublicKey to Crypto.__all_
-bugfixes
2005-10-25 17:07:27 +00:00
rillig
8eab88a58e Solaris 9 has a <vis.h> header, but it is very different to the BSD <vis.h>
header, which is expected by heimdal. Now the package builds on Solaris 9.
2005-10-25 01:17:57 +00:00
rillig
1bf464a323 Use "+=" instead of "=" for PLIST_SUBST. 2005-10-23 23:11:09 +00:00
rillig
fd5dffd960 Replaced $f with ${f} to fix some pkglint warnings. 2005-10-23 21:54:35 +00:00
rillig
1ef7570dd5 Added RCS Id to line 1. 2005-10-23 20:21:43 +00:00
adrianp
6cf790cc1f Fix user/group creation 2005-10-23 19:59:54 +00:00
adrianp
f279a1edea Install the index file for the www server
Don't run as root
Bump to nb3
2005-10-23 17:45:39 +00:00
heinz
87e3e96f9a The home page changed. 2005-10-22 20:05:01 +00:00
minskim
99bd5e5a26 This package requires curl>=7.15.0nb1. 2005-10-20 16:29:18 +00:00
agc
5fc617a44c Update audit-packages to version 1.39
Give the audit-pacakges a "-d" option to download the vulnerabilities file
with downloaad-vulnerability-list before scanning the installed packages.

Update the documentation accordingly.

Get rid of some inconsistent style problems in the audit-packages script.
2005-10-20 10:26:54 +00:00
wiz
7317db7a85 Update to 1.2.8:
* Version 1.2.8 (2005-10-07)
- Libgcrypt 1.2.2 is required to fix a bug for forking GnuTLS servers.
- Don't install the auxilliary libexamples library used by the
  examples in doc/examples/ on "make install", report and tiny patch
  from Thomas Klausner
- If you pass a X.509 CA or PGP trust database to the command line
  tool, it will now abort the connection if the server certificate
  validation fails.  Use the parameter --insecure to continue even
  after certificate validation failures.  Inspired from discussion
  with Alexander Kotelnikov
- The test for socklen_t has been moved to gnulib.
- Link failures for duplicate or missing "program_name" symbol has been fixed,
  patch from Martin Lambers
- The command line tool and the examples no longer uses mmap or bzero,
  to make them more portable, patch from Martin Lambers
- Made the PKCS #12 API handle null passwords. Based on patch by
  Anton Altaparmakov
- The GTK-DOC manual should build with current released tools.
  (But a copy of the output is included, so the tools are not required.)
- API and ABI modifications:
  No changes since last version.
2005-10-20 00:43:32 +00:00
adrianp
0b0e85f6ef Update to metasploit 2.5
This is a maintenance release - all updates to 2.4 have been rolled into
2.5, along with some new exploits and minor features.
2005-10-19 10:34:33 +00:00
grant
e66368ac5a tcp_wrappers needs libnsl, libsocket for linking into an executable on
Solaris.
2005-10-18 04:32:01 +00:00
wiz
72afc2209f Remove wip from CATEGORIES, noted by bouyer. 2005-10-17 10:22:37 +00:00
heinz
35e71db591 Updated to version 0.97.
No pkgsrc changes.

Changes since version 0.96:
===========================
v0.97
        - Writes now correctly return errors.  (Problem noted by
          Dominique Quatravaux <dom at idealx.com>).
        - CA paths now work without passing an empty SSL_ca_file
          argument.  (Problem found by Phil Pennock, <phil.pennock
          at globnix.org>).
        - IO::Socket::SSL now automatically passes Proto => tcp (if
          not already specified) to IO::Socket::INET to work around
          /etc/services files with udp entries listed first.  (Fix
          suggested by Phil Pennock).
        - $socket->accept() now returns the peer address in array
          context for better conformance with IO::Socket::INET.
          However, if you were doing "map { $_->accept } (@sockets)",
          or similar tricks, you will need to use "scalar" to get the
          old behavior back.  (Problem noted by Nils Sowen, <n.sowen
          at kon.de>).
        - IO::Socket::SSL should now properly block on reads larger
          than the buffer size of Net::SSLeay.  (Problem found by Eric
          Jergensen, <eric at dvns.com>).
        - IO::Socket::SSL should now send CA Certs (if necessary)
          along with certificates.  (Problem found by <roy at
          momentous.ca>).
        - Timeouts should now work, but be aware that if multiple
          reads/writes are necessary to complete a connection, then
          each one may have a separate timeout.  (Request from
          Dominique Quatravaux <dom at idealx.com>).
        - In certain cases, start_SSL() would misplace a socket's
          fileno, causing problems with starting SSL.  This should now
          be fixed.  (Problem found by <russ at zerotech.net>).
        - IO::Socket::SSL now requires a minimum of Net::SSLeay 1.21.
2005-10-16 08:46:07 +00:00
rillig
38669c1c20 Fixed misspelled variable. PKGVERSION was used, but PKGREVISION
intended. This automatically leads to a PKGREVISION bump.
2005-10-15 06:55:38 +00:00
jlam
c098327def Update security/openssl from 0.9.7h to 0.9.7i. Changes from version
0.9.7h include fixing a shared library upgrade problem where openssl-0.9.7h
had a different ABI than previous 0.9.7 sub-revisions due to a changed
constant.
2005-10-15 06:29:58 +00:00
adrianp
a1b247abb7 Addition of ap-modsecurity 2005-10-14 18:43:26 +00:00
adrianp
2c1cf49b25 ModSecurity is an open source intrusion detection and prevention engine for
web applications (or a web application firewall). Operating as an Apache Web
server module or standalone, the purpose of ModSecurity is to increase web
application security, protecting web applications from known and unknown
attacks.

This package is for both Apache 1.x and Apache 2.x
2005-10-14 18:29:39 +00:00
minskim
2207bc6b32 Add and enable secpanel-0.5.1. 2005-10-14 01:08:27 +00:00
minskim
57fd5d09db Import secpanel from pkgsrc-wip. Packaged by dhowland.
SecPanel serves as a graphical user interface for managing and running
SSH (Secure Shell) and SCP (Secure Copy) connections.  SecPanel is
written entirely in pure Tcl/Tk and does not need any extensions but
it requires version 8.x of Tcl and Tk.
2005-10-14 01:06:20 +00:00
minskim
bf8588c7cc Add and enable dirb-1.8. 2005-10-14 00:45:56 +00:00
minskim
3f84792289 Import dirb from pkgsrc-wip. Packaged by pancake.
DIRB is a Web Content Scanner.  It looks for existing (and/or hidden)
Web Objects.  It basically works by launching a dictionary based
attack against a web server and analizing the response.

DIRB comes with a set of preconfigured attack wordlists for easy usage
but you can use your custom wordlists.  Also DIRB sometimes can be
used as a classic CGI scanner, but remember is a content scanner not a
vulnerability scanner.

DIRB main purpose is to help in professional web application auditing.
Specially in security related testing.  It covers some holes not
covered by classic web vulnerability scanners.  DIRB looks for
specific web objects that other generic CGI scanners can't look for.
It doesn't search vulnerabilities nor does it look for web contents
that can be vulnerables.
2005-10-14 00:44:03 +00:00
seb
52fe34d8a3 Add & enable p5-Net-SSH 2005-10-13 20:17:00 +00:00
seb
cdacfc2f9e Initial import of p5-Net-SSH version 1.29 into The NetBSD Packages
Collection.

The Net::SSH::Perl Perl5 module contains implementations of both the
SSH1 and SSH2 protocols.
2005-10-13 20:14:18 +00:00
wiz
0125c66c87 Update HOMEPAGE and MASTER_SITES, from Zafer Aydogan in PR 31549. 2005-10-13 17:29:32 +00:00
seb
3d73a918aa belatedly add & enable p5-Crypt-DH 2005-10-13 10:58:42 +00:00
jmmv
f4a6af3b4e Update to 0.4.5:
Changes in version 0.4.5 are:
* Fix a crash in some sync functions.
2005-10-12 21:46:00 +00:00
seb
c338c40703 Initial import of p5-Crypt-DH as version 0.06 into the NetBSD Packages
Collection.

The Perl 5 module Crypt::DH implements the Diffie-Hellman key
exchange system.
2005-10-12 17:55:26 +00:00
jlam
56fc9eaed8 If the native openssl-0.9.7d contains the security fixes pulled up to
the netbsd-2-0, netbsd-2, and netbsd-3-0 branches on 2005-10-11, then
for the purposes of satisfying dependencies, pretend it's openssl-0.9.7h.
2005-10-12 02:20:10 +00:00
jlam
524b6ae113 Remove leading "-" from version number when matching the openssl-0.9.6g
from the netbsd-1-6 branch with the 20040401 fix.
2005-10-12 02:00:03 +00:00
jlam
20992756a1 Update security/openssl to version 0.9.7h. This is a security
vulnerability triggered update due to CAN-2005-2969.  Changes from
version 0.9.7f include:

      o Fix SSL 2.0 Rollback, CAN-2005-2969
      o Allow use of fixed-length exponent on DSA signing
      o Default fixed-window RSA, DSA, DH private-key operations
      o More compilation issues fixed.
      o Adaptation to more modern Kerberos API.
      o Enhanced or corrected configuration for Solaris64, Mingw and Cygwin.
      o Enhanced x86_64 assembler BIGNUM module.
      o More constification.
      o Added processing of proxy certificates (RFC 3820).
2005-10-11 17:19:21 +00:00
riz
2188d18285 When patches are updated, distinfo must be updated as well.
Hi joerg!  8-)
2005-10-11 01:53:16 +00:00
reed
3d6be73882 Remove the redundant INSTALLATION_DIRS. This already
does mkdir or mkinstalldirs for these needed directories.
2005-10-10 20:45:19 +00:00
joerg
c3d20eec3a Allow sudo to properly build on DragonFly. Without the detection of
shared linking the noexec wrapper is not build.
2005-10-10 17:48:09 +00:00
hira
08e5700e3d s/jp.netbsd.org/jp.NetBSD.org/ 2005-10-10 17:06:30 +00:00
jmmv
ea09d3014b Update to 0.4.4:
Changes in version 0.4.4 are:
* Translation updates
* warning fixes
* require gtk 2.6
2005-10-10 13:43:05 +00:00
rillig
3cc4e32a51 Changed explicit sed(1) code to the SUBST framework. Added BINOWN and
BINGRP to the MAKE_ENV to make unpriviledged builds work.
2005-10-10 09:16:48 +00:00
rillig
cc8905f21d Fixed shell quoting in echo(1) commands. 2005-10-08 22:42:08 +00:00
rillig
87b801997b Sorted PLIST. 2005-10-08 22:38:33 +00:00
rillig
e06d2edc1f Removed the USE_RSAREF2 variable and a big, fat warning, as the variable
does not affect the package in any way.
2005-10-08 22:36:49 +00:00
rillig
a6eb6b931e Sorted PLIST. 2005-10-08 22:36:00 +00:00
jdolecek
e4855206f0 Unfortunately PHP has several openssl hooks, which are only enabled
when the base PHP is compiled with openssl extension (e.g. ssl://, tls://
stream support, and couple others). These don't work when SSL support
is loaded via extension.

For this reason, make openssl extension unconditionally built-in
into the main PHP package, and g/c security/php-openssl.
2005-10-08 16:49:35 +00:00
reed
20432235d3 Remove MANDIR usage in PLIST (like I did for openssh package
in July).

And remove CONFIGURE_ARGS for --mandir as this is now done
for GNU_CONFIGURE.
2005-10-07 17:43:29 +00:00
reed
ad289c0072 Remove CONFIGURE_ARGS for --mandir as this is now done
for GNU_CONFIGURE.
2005-10-07 17:42:35 +00:00
rillig
44f4f508db Fixed a pkglint warning. 2005-10-07 12:53:02 +00:00