Commit Graph

750 Commits

Author SHA1 Message Date
kevlo
549822c289 Initial import of MD5-1.7
This module is the interface to md5 message-digest algorithm.
2001-01-04 02:09:18 +00:00
espie
d4830cdc18 trim unneeded parts, dammit. 2001-01-04 00:03:01 +00:00
danh
b087bd72b4 +slurpie 2001-01-03 22:35:35 +00:00
danh
4fb9d93ace Slurpie is a passwd file cracker similar to CrackerJack and John
the Ripper except that it can be run in a distributed environment
(multiple computers aka nodes).

Submitted by:	Brian Caswell <bmc@mitre.org>
2001-01-03 22:34:09 +00:00
matt
7328d212f1 - up to 1.0.6
- patch included libtools
- use ports gmp now that our gmp is gone
- make included scripts more readable
2000-12-28 16:07:05 +00:00
jakob
565b70f0a4 update to v3.11 2000-12-27 10:10:08 +00:00
reinhard
64f02cb85e increment PKGNAME; thx naddy@ for pointing out 2000-12-23 16:48:06 +00:00
reinhard
5e2899097a Security update, from the original patch:
It has been pointed out that there is another bug in the signature
verification code of GnuPG.

         * This can easily lead to false positives *

All versions of GnuPG released before today are vulnerable!

To check a detached singature you normally do this:

  gpg --verify foo.sig foo.txt

The problem here is that someone may replace foo.sig with a standard
signature containing some arbitrary signed text and its signature,
and then modify foo.txt - GnuPG does not detect this - Ooops.

The solution for this problem ist not easy and needs a change in the
semantics of the --verify command: It will not any longer be
possible to do this:

  gpg --verify foo.sig <foo.txt

Instead you have to use this

  gpg --verify foo.sig - <foo.txt

The difference here is that gpg sees 2 files on the command lines
and thereby knows that it should check a detached signature.  We
really need this information and there is no way to avoid that
change, sorry.  You should make sure that you never use the first
form, because this will lead to false positives when foo.sig is not
a detached signature - gnupg does detect the other case and warns
you, but this is not sufficient.  If you use GnuPG from other
applications, please change it.

ok markus@
2000-12-23 15:20:59 +00:00
naddy
abfa9851a8 If HOMEPAGE is defined in Makefile, reference it in DESCR, too.
authorized by espie@

Fix a few minor cosmetic issues along the way.
2000-12-21 21:20:34 +00:00
dugsong
814be5ac70 update checksum, i suk 2000-12-20 13:53:14 +00:00
espie
c287b9d0c1 Missing ports 2000-12-19 15:30:47 +00:00
naddy
beb20af917 Add pointer to home page. 2000-12-19 11:54:46 +00:00
obecian
8e18f618f5 stunnel-3.9 update
Version 3.9, 2000.12.13:
* Updated temporary key generation:
   - stunnel is now honoring requested key-lengths correctly,
   - temporary key is changed every hour.
* transfer() no longer hangs on some platforms.
  Special thanks to Peter Wagemans for the patch.
* Potential security problem with syslog() call fixed.
2000-12-19 05:46:03 +00:00
dugsong
7de996922a update to dsniff-2.3 2000-12-18 13:16:41 +00:00
brad
ce5ed433c2 - cleanup Makefile
- remove USE_LIBTOOL
- sync patch-ltconfig with my original patch
- add missing patch-ltmain.sh
- fixup PLISTs
2000-12-14 17:37:40 +00:00
espie
4bce863756 Fuck cvs, missed file again.
Make update to r11 effective.
2000-12-11 18:19:52 +00:00
obecian
a97326dff8 MASTER_SITES update
found by Brian Poole <raj@cerias.purdue.edu>
2000-12-09 05:19:29 +00:00
brad
801d914a55 oops, remove SEPARATE_BUILD. I'll come back later and fix the one minor
bug with installing the man page when using SEPARATE_BUILD.
2000-12-08 00:01:22 +00:00
brad
4f697a54b3 upgrade to mhash 0.8.3 2000-12-07 18:31:21 +00:00
avsm
f171a88d7a add in mcrypt and libmcrypt 2000-11-27 15:58:05 +00:00
avsm
91cb19a468 import mcrypt-2.5.5
--

mcrypt is intended to be a replacement of the old unix crypt(1)
under the GNU General Public License. Unix crypt(1) was a popular
file encryption program in unix boxes.

It was based on the Enigma encryption algorithm but it was considerable
trivialized. Since this was not adequate, even for individual privacy
needs, mcrypt was created as a similar program using some modern
block encryption algorithms.

Mcrypt also has a compatibility mode with unix crypt(1) and with
Solaris des(1). It supports all the algorithms and modes found in
libmcrypt and it is very extendable.

At the time writing this, it supports the algorithms: BLOWFISH,
TWOFISH, DES, TripleDES, 3-WAY, SAFER, LOKI97, GOST, RC2, RC6, MARS,
IDEA, RIJNDAEL, SERPENT, CAST, ARCFOUR and WAKE.

Block algorithms are implemented in modes: CFB, CBC, ECB, OFB (8
bit and n bit, where n is the size of the algorithm's block length).
For a brief description of the algorithms and the modes look at the
mcrypt manpage (this may be out of date).  In mcrypt it is on the
user to decide which algorithm he considers best for encrypting his
data.
2000-11-27 15:56:03 +00:00
avsm
7769275ab2 import of libmcrypt-2.4.7
--

libmcrypt is the library which implements all the algorithms and
modes found in mcrypt. It is currently under development but it
seems to work pretty good.

Unlike most encryption libraries libmcrypt does not have everything
(random number generators, hashes, hmac implementation, key exchange,
public key encryption etc.).  Libmcrypt only implements an interface
to access block and stream encryption algorithms.

Its purpose was to assist in the development of mcrypt by providing
a uniform interface to access several different encryption algorithms,
so that the main program is independent of the encryption algorithms
and the modes used.

Libmcrypt supports the algorithms: BLOWFISH, TWOFISH, DES, TripleDES,
3-WAY, SAFER-sk64, SAFER-sk128, SAFER+, LOKI97, GOST, RC2, RC6,
MARS, IDEA, RIJNDAEL-128 (AES), RIJNDAEL-192, RIJNDAEL-256, SERPENT,
CAST-128 (known as CAST5), CAST-256, ARCFOUR and WAKE.  Block
algorithms can be used in: CBC, ECB, CFB and OFB (8 bit and n bit,
where n is the size of the algorithm's block length).
2000-11-27 15:41:46 +00:00
jakob
821a4a7f10 update to v1.1.6.
***  Tuesday, November 21, 2000 -- Dante v1.1.6

 o fix a bug related to hostnamelength parsing in server.
   Thanks to "Thomas Jarosch" <thomas.jarosch@styletec.de>.
2000-11-21 10:38:25 +00:00
camield
eb22302678 - update to version 2.2 (no longer requires any patches)
- make adding users more user-friendly in MESSAGE

From maintainer: Joshua Stein <jcs@rt.fm>
2000-11-20 07:38:02 +00:00
jakob
dfa4244b6b update to v1.1.15. NEWS excerpt:
***  Monday, October 16, 2000 -- Dante v1.1.5

 o New prototype for gethostbyaddr in RedHat 7.0 added.
   First reported by Paul R Streitman <prs@us.ibm.com>.

 o RedHat needs libnsl for tcpwrappers to work.

***  Thursday, October 5, 2000 -- Dante v1.1.4

 o fix bug affecting clients going through socks v4 servers.
   Reported and nicely diagnosed by Jack Keane (jkeane@OpenReach.com).

 o increase default listen backlog to 511, based on request by
   Doug Hardie (bc979@lafn.org).

***  Monday, September 25, 2000 -- Dante v1.1.3

 o some fixes/additions to example/ files.

 o HP-UX 11.00 should now work.
   Thanks to Malte Cornils <malte@cornils.net> for testing.

 o httpproxysupport in client (meaning "socksify" can work
   when going through webproxies too).

 o expire badmarking on bad/non-working routes/proxyservers after
   configured time.  Default to never expiring, as in previous
   versions.  See BADROUTE_EXPIRE in config.h.

 o say what address we expected the bindreply to come from in
   "unexpected bindreply ..."

 o don't close controlconnection if another socket is using it.
   Fixes a bug triggered when using the bindextension in certain
   cases.  Problem reported by Jacques A. Vidrine (n@nectar.com).

 o compilation outside source directory fixed, based on patch from
   NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp>

 o bsdi uses elf; NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp>

 o dlib/hostcache.c now compiled again. First reported by
   "Jacques A. Vidrine" <n@nectar.com>
2000-11-19 12:26:07 +00:00
dugsong
2886304e62 fix port - markus@ 2000-11-18 06:27:25 +00:00
espie
82f34a7ab5 r10 vanished.
r11 includes most patches.

+ gcc -shared to build object module.
2000-11-02 17:39:46 +00:00
espie
1c1b99c22d Repair john.
Flavorize k6, as package buildings should be reproducible
2000-10-31 14:53:58 +00:00
markus
07aae00303 security update, since 1.0.3 does not detect modifications of files with multiple signatures 2000-10-30 12:52:32 +00:00
espie
aff2e05260 Maintainer 2000-10-22 17:02:40 +00:00
espie
64eb9106d9 Another one 2000-10-22 16:30:10 +00:00
espie
03116ad3c6 A few more. 2000-10-22 16:21:17 +00:00
espie
46b5f232b5 Kill
FAKE=Yes
HAS_CONFIGURE, GNU_CONFIGURE, USE_IMAKE, NO_INSTALL_MANPAGES, USE_AUTOCONF
and bump NEED_VERSION accordingly.
2000-10-22 15:41:23 +00:00
espie
aa4a7733cc Complete a few MAINTAINER names. 2000-10-22 14:02:46 +00:00
espie
944fbc0454 Fix bogus dependency.
I shouldn't have to do this. Jakob, your quality control is lacking...
2000-10-22 12:45:36 +00:00
fgsch
45aeb71d96 add real names to MAINTAINER. 2000-10-16 13:30:30 +00:00
avsm
ffbbe033d3 add real name to MAINTAINER and minor cleanups 2000-10-09 00:18:48 +00:00
jakob
f3f6dc0a6e rename patchfile 2000-10-08 22:35:56 +00:00
jakob
ce7dadcdb0 add fullname to MAINTAINER 2000-10-04 21:53:59 +00:00
jakob
2ef981add6 add mhash & shash 2000-10-04 21:18:00 +00:00
jakob
69f32fc494 secure hash generator 2000-10-04 21:16:18 +00:00
jakob
daf5e064a7 secure hash library 2000-10-04 21:11:09 +00:00
dugsong
3997978a57 update to 1.1.1 2000-10-03 05:41:01 +00:00
dugsong
e09d6443dc PFRAG, not PLIST. i suk 2000-10-02 20:21:36 +00:00
dugsong
d2c01dc9e2 add no_x11 flavor 2000-10-02 20:06:07 +00:00
matt
501c5c5bdd reflect DIST_SUBDIR change 2000-10-01 00:45:03 +00:00
matt
588bbc9101 - update to 1.0.5
- patch names, MAINTAINER -> current conventions
2000-10-01 00:41:45 +00:00
matt
a6ba53fea6 - update to 1.0.5
- patch names, MAINTAINER -> current conventions
2000-10-01 00:35:50 +00:00
avsm
5c943aea03 add p5-Crypt-SSLeay to subdir list 2000-09-29 10:24:33 +00:00
avsm
08fd8852b8 import CPAN module p5-Crypt-SSLeay-0.17
--

This Perl module provides support for the https protocol under LWP,
so that a LWP::UserAgent can make https GET & HEAD & POST requests.

Please see 'perldoc LWP' for more information on POST requests.
2000-09-29 10:20:46 +00:00
brad
f99c40395e - use DISTNAME as part of PKGNAME
- better COMMENT
- sort PLIST and add missing @dirrm tags
2000-09-28 22:19:01 +00:00
avsm
ebbd2e1767 - update to latest version 2.12
- correct bad master site subdirectory
- bump NEED_VERSION
- add MAINTAINER name

ok'ed by maintainer
2000-09-26 17:25:15 +00:00
jakob
c56c52ded2 update to version 4094 2000-09-25 21:16:33 +00:00
brad
3918ceb4a1 add name to MAINTAINER 2000-09-24 07:03:59 +00:00
aaron
41a5d86f80 Fix some pkg/COMMENT formatting:
- Decapitalize first letter of comment if appropriate.
- Remove trailing blank lines.
- Remove punctuation.
- Remove version numbers which are often overlooked when updating.
- espie@ ok
2000-09-22 14:55:55 +00:00
brad
1ea6743d0d upgrade to gnupg 1.0.3 2000-09-19 13:18:50 +00:00
obecian
620e0ba79d cvs forgot the parent Makefile 2000-09-18 09:08:25 +00:00
obecian
2abc3ac9e1 patched client.c to avoid segfaults on user/pass list exhaustion
updated port to comply with -current changes
2000-09-18 08:51:31 +00:00
avsm
c02ec69931 Update from 2.2 -> 3.0.1
It now FAKEs, and installs in a nice clean CPAN way

- CONFIGURE_STYLE is perl now, remove a lot of old manual code
- remove all old patches, and add in a new one which cleans up
  the program a bit (remove small linux specific hacks)

thanks to brad@ for the review
2000-09-17 20:01:40 +00:00
espie
2b66972bd2 + p5-Digest-MD5 2000-09-17 14:27:30 +00:00
espie
8e77676533 Message digest perl5 module.
From quisar@quisar.ambre.net, thanks.
2000-09-17 14:17:16 +00:00
kevlo
3b480ecf57 - Update to version 3.6
- Bump NEED_VERSION
- Add @comment to package list

OK maintainer(dugsong@).
2000-09-13 04:48:57 +00:00
brad
08335c8a5a use new extraction framework: remove USE_ZIP and set EXTRACT_SUFX 2000-09-12 15:37:33 +00:00
brad
8f4d0f6fe6 - FAKE
- remove an unnecessary patch
- use better filename for patch
- add @comment with RCS id to PLIST
2000-09-12 10:38:51 +00:00
brad
95e93edcb1 better 2000-09-12 10:32:16 +00:00
brad
3d353b6b3f - remove a bunch of unused variables
- remove unnecessary patch (patch-aa)
- use better filename for patch
2000-09-07 05:44:32 +00:00
brad
2b9f5884a8 bye bye 2000-09-07 04:40:17 +00:00
brad
a6ada5c957 - now that patch-ao has been removed we can remove CONFIGURE_ENV and also
that need for autoconf has been removed. CONFIGURE_STYLE= autoconf -> gnu
- remove post-configure Makefile mangling
2000-09-07 04:30:44 +00:00
brad
336e8db9e8 - remove usa/intl FLAVORs for pgp/pgp5
- remove rsaref, ssl26 and sslintl
2000-09-07 04:02:07 +00:00
brad
adf6f4fc47 axe this port too 2000-09-07 03:30:08 +00:00
brad
dd2fcb0126 axe this port, -current has RSA integrated. 2000-09-07 03:25:42 +00:00
marc
e1b157a003 bye-bye sslusa 2000-09-06 20:23:56 +00:00
marc
0a1c7f106d bye-bye 2000-09-06 20:23:30 +00:00
marc
8f1a0a267f Remove intl/usa flavors as one port is OK for world wide use after
6 Sep 2000 (when RSA Security Inc. placed its public key encryption
algorithm into the public domain).   Remove configure patch that
added the no-longer-needed --with-rsaref option
2000-09-06 18:14:04 +00:00
marc
6baef942fd Remove intl and usa flavors. There is now a single world wide
version (RSA Security Inc. placed its public key encryption algorithm
into the public domain, today).
2000-09-06 17:26:28 +00:00
matt
f0c8300c8c - USE_X11 in reg. flavor, thx anil@recoil.org
- pretty Makefile, HOMEPAGE var in DESCR
2000-09-06 00:24:01 +00:00
kevlo
232bcba10d - Update MASTER_SITES
- Remove extra spaces & FAKE
- Bump NEED_VERSION
- GNU_CONFIGURE -> CONFIGURE_STYLE
- Add @comment to package list

Ok'd by maintainer.
2000-09-05 15:06:26 +00:00
turan
ffbc63ed49 remove ssh 2000-08-30 00:37:41 +00:00
matt
629af349c2 add ppgen 2000-08-28 23:37:18 +00:00
matt
c36b1f9fa6 New port: security/ppgen, secure passphrase generator 2000-08-28 23:36:45 +00:00
turan
f07a189416 remove ssh port. discussed with theo. 2000-08-27 20:45:13 +00:00
jakob
83f8e721e1 rename share/examples/socks to share/examples/dante 2000-08-25 19:07:12 +00:00
jakob
bc602cbe59 update to dat-4092 2000-08-24 12:06:14 +00:00
jakob
6c2f43aa15 add OpenBSD idtag 2000-08-24 12:01:58 +00:00
jakob
f9c58f9848 enable (unsupported) login method 2000-08-23 10:02:00 +00:00
jakob
1b318d0053 enable pwcheck; Evan Champion <evanc@concer.to> 2000-08-23 07:32:04 +00:00
jakob
d093be316f update to v1.5.24 2000-08-21 16:33:33 +00:00
camield
0796205262 - add scanlogd
- sync Makefile with reality
2000-08-16 07:41:20 +00:00
camield
f29490367b scanlogd is a TCP port scan detection tool by Solar Designer.
From Joshua Stein <jcs@rt.fm>
2000-08-16 07:32:44 +00:00
brad
da9686bef0 remove old man page; pointed out by Fabian Kroenner <escher@spoiled.org> 2000-08-12 18:21:45 +00:00
brad
26eea3347d - BUILD_DEPENDS, ${PREFIX} -> ${LOCALBASE}
- add HOMEPAGE
- add @comment with RCS id to PLIST
2000-08-11 08:59:56 +00:00
obecian
c310b0d01d updated to whisker 1.4.0 2000-08-07 04:34:05 +00:00
matt
b6934a012d update to 1.0.4 2000-08-05 01:25:32 +00:00
brad
4108cbc5d6 - bump NEED_VERSION
- fix HOMEPAGE URL
2000-08-03 00:06:30 +00:00
brad
f84f801f03 add socks5-v1.0r10.patch5.txt patch
--
This patch prevents some file handles from accidentally being closed.
2000-08-03 00:04:47 +00:00
brad
a0e70c229d add socks5-v1.0r10.patch4.txt patch
--
This patch prevents the client for sending zero length username/passwords
and prevents the server from accepting zero length username/passwords.
Only useful for sites using username/password authentication (rfc1929).
2000-08-03 00:04:12 +00:00
brad
0d0233dd72 add socks5-v1.0r10.patch3.txt patch
--
This patch fixes a problem with the SOCKS client library for dup().
The ftp client uses dup().
2000-08-03 00:03:21 +00:00
brad
ba8ef35c1b add socks5-v1.0r10.patch2.txt patch
--
This fixes a date related roll-over problem.
2000-08-03 00:02:34 +00:00
brad
997f942624 add socks5-v1.0r10.patch1.txt patch
--
The patch is for clients that do not have DNS resolution.  Sites that do
not use the remote name resolution do not have to apply this patch.

The fakehost files (/tmp/.s5fakehost-<uid>) created with releases prior to
release 10 are not compatible.

If the fakehost file has size 65284 bytes, it is the old version.  Delete
the file, apply the following patch, and rebuild the clients.  The new
fakehost file has size 32644 bytes.
2000-08-03 00:01:52 +00:00
brad
5677c1b1fd fix offsets in patch 2000-08-02 23:25:46 +00:00
matt
641cff9b9c - update to 1.0.3
- clean up Makefile and wrapper scripts some more
- better INSTALL/DEINSTALL script
- be able to compile w/ old nessus pkg installed (thx rdump@river.com)
- make it think nmap is always present to avoid dependency (espie@)
2000-07-27 00:23:33 +00:00
brad
c1f0904af0 style 2000-07-25 10:13:39 +00:00
brad
4486f3e1cd make lines in DESCR a little shorter 2000-07-20 10:44:24 +00:00
brad
2ac2c337d7 - remove FAKE=Yes
- use new framework for PLISTs
- add @comment with RCS id to PLISTs
2000-07-20 05:14:47 +00:00
kevlo
fb5ad38593 Mark unbroken and add @comment to PLIST 2000-07-14 03:02:34 +00:00
brad
144aeba379 upgrade to gnupg 1.0.2 2000-07-13 19:39:24 +00:00
turan
5a987f8e45 these ports are broken. they have been broken for a long time, reported
to their maintainers, and they have still to be fixed.  details of the
build errors have been sent to ports@openbsd.org with a message id of
20000704015341.A25779@umich.edu
2000-07-09 23:41:52 +00:00
matt
e4ff0da719 Fix missing %D/ in DYNLIBDIR. 2000-07-09 22:03:27 +00:00
matt
d568b2acd1 CVS bug bit me... moving to new PLIST scheme, bumping NEED_VERSION,
cleaning up Makefile.
2000-07-07 21:25:10 +00:00
matt
df72fe05fc Convert to new PLIST style; bump NEED_VERSION; clean up Makefile comments 2000-07-06 22:54:29 +00:00
krw
8066ef4fab Change PFRAG.shared ldconfig invocation(s) to
DYNLIBDIR() invocations.

Bump NEED_VERSION to 1.310 so DYNLIBDIR() works.

As requested by espie@
2000-07-04 01:29:29 +00:00
matt
d9c7ee19a1 Accidentally left in a testing flag -- corrected. 2000-07-03 01:34:10 +00:00
matt
540096157b Update to 1.0.0 and FAKE. 2000-07-03 01:03:50 +00:00
fgsch
da12eafa20 strip bins on install. bump need_version. 2000-07-02 06:21:18 +00:00
dugsong
2ad09cf952 add bfbtester 2000-06-30 03:34:41 +00:00
dugsong
844616c4f6 bfbtester - brute force binary tester 2000-06-30 03:33:51 +00:00
fgsch
83d9b09522 remove deprecated 'if defined' statements.
bump NEED_VERSION.
2000-06-29 22:25:47 +00:00
brad
1f8afbaa3d - add HOMEPAGE
- GNU_CONFIGURE -> CONFIGURE_STYLE
- remove license type
- mkdir -> ${INSTALL_DATA_DIR}
- add @comment with RCS id to PLIST
2000-06-29 06:06:31 +00:00
jakob
001b71ddd6 update to dat-4083
add script to simplify dat-file upgrade (from NetBSD + rewritten)
2000-06-27 18:40:54 +00:00
jakob
f0a7ee7755 upgrade to v1.1.2 2000-06-27 13:44:38 +00:00
jakob
975106bbaf - CONFIGURE_STYLE
- remove FAKE
2000-06-26 19:36:00 +00:00
jakob
443cafb88e uvscan DAT file port; from NetBSD 2000-06-26 19:32:59 +00:00
jakob
f3e9c08a3a uvscan port; from NetBSD 2000-06-26 19:32:16 +00:00
brad
ef39e0c427 trim down DESCR a bit and add HOMEPAGE 2000-06-22 21:02:27 +00:00
espie
6bcf110de9 Port format nits. 2000-06-20 21:11:35 +00:00
jakob
44f3016c80 remove fake
add comment to PLIST
CONFIGURE_STYLE
make port package correctly without shared libraries
2000-06-20 20:26:01 +00:00
jakob
da5a63a44b remove fake
add comment to PLIST
CONFIGURE_STYLE
2000-06-20 20:20:00 +00:00
jakob
5591f23370 remove fake
add comment to PLIST
CONFIGURE_STYLE
cleanup
2000-06-20 19:36:24 +00:00
dugsong
0afb6db823 upgrade to version 2.2 2000-06-19 18:38:55 +00:00
espie
f100c128f9 Remove NO_CONFIGURE/NO_PATCH/NO_EXTRACT/NO_MTREE
Kill corresponding FAKE=Yes and switch to CONFIGURE_STYLE while I'm at it.
2000-06-16 23:06:03 +00:00
form
8cb06275f4 remove FAKE=yes
add HOMEPAGE
GNU_CONFIGURE -> CONFIGURE_STYLE
add $OpenBSD$ to PLIST
use PFRAG.shared
2000-06-16 06:00:14 +00:00
fgsch
f6fc9eec9f add CONFIGURE_STYLE and NEED_VERSION; remove FAKE=yes; add tag to PLIST 2000-06-11 01:50:22 +00:00
espie
2f9b7b6f4c Trivial fakes 2000-06-09 21:04:13 +00:00
espie
d85b4b4744 trivial fake 2000-06-05 01:46:09 +00:00
espie
739a39674b Trival fake 2000-06-05 01:42:48 +00:00
espie
21f1dfc9c1 fake 2000-06-05 01:35:13 +00:00
espie
e506d03142 Installing pgp and pgp5 on the same system is not a problem. 2000-06-04 23:29:22 +00:00
marc
7851344586 update location of RSAREF per message from usura@zedz.net (Alex de Joode)
to ports@openbsd.org
2000-06-01 04:20:00 +00:00
espie
c84e96bb7c Oops 2 2000-05-31 12:09:38 +00:00
espie
7e008fbe34 Can't use .BEGIN yet, as this screws depends 2000-05-31 10:18:06 +00:00
jakob
76e39afdff add cyrus-sasl 2000-05-28 19:26:20 +00:00
jakob
761f2dc8d7 Cyrus SASL library 2000-05-28 19:22:17 +00:00
espie
7fad65e8de Backward flavors. 2000-05-27 22:57:27 +00:00
espie
0166750b8a - fake (fix stupid MFLAGS mis-usage of pgp5)
- fix backward handling of USA_RESIDENT vs. FLAVOR.

Flavored ports *MUST* set FLAVOR consistently, for the magic setting
of work, pkgname to work, e.g., any old port with variables such as
USA_RESIDENT must:
* set FLAVOR depending on those old option variables,
* only depend on FLAVOR for all subsequent tests.
2000-05-27 17:23:57 +00:00
fgsch
84a6fef883 fix a security problem in random gathering code; info and patch supplied
by daniel@reichardt.ch.
2000-05-26 15:27:32 +00:00
dugsong
48e0fca174 version 2.1 - add half-duplex TCP stream reassembly (hack), various fixes 2000-05-23 15:15:54 +00:00
beck
838b84f00f Make this behave more like a modern port with fake.
(from espie@).
2000-05-19 16:49:48 +00:00
dugsong
ed08ab5f3b fix checksum 2000-05-17 19:04:38 +00:00
dugsong
3aefb7e785 upgrade to 1.1 (fixes recent hole reported in l0pht advisory, FAKE 2000-05-17 18:48:34 +00:00
dugsong
8b08eced88 upgrade to 2.0, fake 2000-05-17 16:32:08 +00:00
marc
38d88d8a1b packing list change: don't forget to run ldconfig @ install. Ok turans 2000-05-08 22:18:42 +00:00
kevlo
11b358c3aa Trivial fake. 2000-05-06 07:14:55 +00:00
turan
cc82513196 fix the plist. 2000-05-05 01:14:54 +00:00
angelos
bf406035f5 Update cfsd.8 to reflect how we use it (op21@squish.org, ok turan@) 2000-05-04 18:30:01 +00:00
markus
83a34ba692 enable sftp 2000-05-01 18:46:21 +00:00
kevlo
86e2ea1a0a - Add the license
- Fake
2000-04-30 10:22:49 +00:00
kevlo
8ed1940adb Trivial fake... 2000-04-30 10:21:42 +00:00
kevlo
75dca4492b Trivial fake 2000-04-30 10:07:43 +00:00
kevlo
7873018655 Fake 2000-04-30 10:00:12 +00:00
kevlo
80c1a46101 fake 2000-04-30 09:20:06 +00:00
kevlo
3cd0eaeaf7 - Fix the PLIST
- Fake
2000-04-30 09:17:17 +00:00
kevlo
7d6b122928 - Update the MASTER_SITES. Because the source has been moved.
- Fake
2000-04-30 09:06:40 +00:00
turan
065b2b3e62 license. yes to all. ok mudge@l0pht.com. 2000-04-29 00:01:41 +00:00
markus
f756c318ba ftp replacement that runs over a ssh tunnel, for protocol 1+2, ok turan@ 2000-04-25 13:11:03 +00:00
turan
32c3161dd8 flavor these ports 2000-04-22 12:12:07 +00:00
espie
f80fa9e00b From Kyle Hargraves <halogen@nol.net>:
add a few missing entries from SUBDIRs.
Leave lam out for now, as its install process is really weird.
2000-04-21 18:45:10 +00:00
marc
773278834a Per Chris Turan's request: extract rsaref into a local directory
and apply local patch instead of using the rsaref port directory.
Fixes problems trying to make both ports concurrently, among other
things.

This is a bookkeeping change only.. there is no change in the
generated libraries.
2000-04-19 17:16:17 +00:00
turan
868a0ada5c license 2000-04-18 10:08:23 +00:00
turan
d74ff3e131 license 2000-04-18 09:48:00 +00:00
maja
71cc90047c add MIRROR_DISTFILE=no. -moj 2000-04-15 19:01:59 +00:00
turan
9d15a6a2c9 initial import of ADM's radius sniffer.
from nny@sinister.com
2000-04-13 21:16:52 +00:00
beck
b1dbfc026b I hate that length restriction. I hate it I hate it I hate it... 2000-04-13 20:45:48 +00:00
beck
521add5d3d oops 2000-04-13 20:37:09 +00:00
beck
ebf9b1de4b New minty 2.7 version, now hopefuly behaving nicer as a port. 2000-04-13 16:35:48 +00:00
marc
129c7d608e Fix a frustrating commedy of errors found by fries@ and others
libssl/Makefile.bsd-wrapper did the wrong thing with make clean
if run before make prereq.   bsd.port.mk doesn't clean up the obj
dir of the sslusa port when symlinked somewhere else.   These two
bugs caused no end of grief to everyone but me.   This is a workaround
for some of those bugs
2000-04-12 04:16:43 +00:00
turan
e237daabb1 test for no FLAVOR 2000-04-11 06:06:29 +00:00
turan
5ee895ac15 usa and international flavors for ssh. 2000-04-11 06:02:28 +00:00
turan
4a6f70b1b7 license 2000-04-11 05:52:23 +00:00
espie
233ac49af6 explicit FAKE=No, so that we can turn FAKE on by default. 2000-04-09 17:35:57 +00:00
marc
121ab35870 Bump version to 2.7
make sure any old objects are deleted before building so we don't
create libs using the old (non-rsa) configuration
2000-04-08 23:14:13 +00:00
dugsong
3b05dab81d add ADMfzap 2000-04-06 20:46:05 +00:00
dugsong
ca468cc18d ADMfzap - connect(), bind() wrapper to evade misconfigured packet filters 2000-04-06 20:45:01 +00:00
marc
d551dca5f6 build package/install in proper dir (/usr/local/lib, not /usr/local
work in the presence of OBJMACHINE= and WRKOBJDIR=
bump distribution version
2000-04-06 00:40:22 +00:00
beck
47bbe77b2f Change port to fix a couple problems noticed by niklas and fries
- make with NOMAN set (this doesn't need to override system man pages)
- use a lndir instead of cp since patch makes new files and deals with
  that ok
- by the above, take care of not accidentally bringing over obj dirs from a
  build tree
2000-04-04 21:17:44 +00:00
marc
9454286665 add sslusa to makefile 2000-03-31 22:21:58 +00:00
marc
634f133cb0 USA (RSAREF) version of libssl 2000-03-31 22:19:54 +00:00
brad
7428f1643b Fake 2000-03-31 05:58:41 +00:00
brad
6088939af2 PLIST's should not contain *.orig files 2000-03-31 05:56:48 +00:00
kevlo
571e6bd171 Fake 2000-03-31 03:16:53 +00:00
form
22bb398026 YES -> Yes
Fix runsocks bug.
bin/{socks5,stopsocks} -> sbin/
2000-03-27 23:02:44 +00:00
beck
16158bc1d0 Shouldn't go on CD. (yet) 2000-03-27 18:14:32 +00:00
beck
dc6fd81189 cleanup - name ssl26 2000-03-27 18:10:00 +00:00
beck
88f2b67efb ssl26 port - generates rsa-enabled libssl libcrypto, non-USA version 2000-03-27 18:04:34 +00:00
beck
c897f035c9 Wrong place. 2000-03-27 18:01:18 +00:00
beck
d756137532 need checksums, add USA_RESIDENT nonsense to make it clear this is the
free world version.
2000-03-27 17:47:18 +00:00
beck
4f0dd46a56 libssl26 port - builds non-usa rsa-enabled libssl and package. 2000-03-27 05:22:02 +00:00
brad
e64837ad82 oops, didnt mean to remove these 2000-03-25 06:04:36 +00:00
brad
3d10235233 Fake 2000-03-25 06:03:12 +00:00
brad
523e6bc429 - Fake
- mkdir -> ${INSTALL_DATA_DIR}
2000-03-25 05:53:20 +00:00
brad
aa271ccd8f - rearrange
- fix comment
2000-03-25 05:52:39 +00:00
espie
3b5e3e8d17 Introduce :: in *_DEPENDS as a place holder for a package spec
Bump NEED_VERSION.
2000-03-24 23:28:01 +00:00
espie
0fd05ef2ce Move all NEED_VERSION right after CATEGORY 2000-03-24 22:11:32 +00:00
turan
7fac02269a license 2000-03-23 05:15:35 +00:00
turan
8931aa4e91 license 2000-03-23 05:09:33 +00:00
turan
e65df25896 license 2000-03-23 04:28:18 +00:00
turan
d79c7144a1 license 2000-03-23 04:22:20 +00:00
jakob
0a1d05d040 update to v1.5
fake
2000-03-20 22:42:57 +00:00
jakob
1243649c6f fake 2000-03-20 22:31:01 +00:00
espie
7a2807c781 Trivial FAKE 2000-03-20 21:49:39 +00:00
jakob
69aa4bc85b create pid-files in /var/run 2000-03-20 21:43:47 +00:00
angelos
7a58717f2b Inform the user at the end of the installation that the machine must
be set up as an NFS client and server.
2000-03-16 23:15:51 +00:00
espie
6f43c05443 Fake. Leave gnu-make along for now, it suspiciously looks like an OpenBSD
make bug.
2000-03-11 02:54:18 +00:00
jakob
4f1ee69591 fix license info 2000-03-05 23:00:29 +00:00
jakob
d2fd1742f5 Update to v3.8
Add licensing
2000-03-05 22:55:44 +00:00
espie
76d52e1f68 PORTSDIR no longer needed in *DEPENDS. 2000-03-05 18:30:21 +00:00
turan
cb7fad4bfc licensing. y,y,y,y is permitted as long as we retain the copyright
in a file somehwere.
2000-03-04 08:39:37 +00:00
brad
2949377d74 ftp.replay.com -> ftp.zedz.net 2000-03-02 07:55:09 +00:00
dugsong
b191575395 ${ECHO} -> echo, cd@sentia.nl 2000-02-28 15:48:12 +00:00
dugsong
4c109aad77 upgrade to version 1.0.1 - old distfile no longer available 2000-02-27 04:02:12 +00:00
turan
dc15fafeff licensing 2000-02-25 21:28:48 +00:00
turan
04dc8365fa mark unbroken 2000-02-25 04:25:45 +00:00
dugsong
299dc27e7d update to version 0.05 2000-02-23 22:56:02 +00:00
dugsong
9bb53241b1 enable its4, prodded by sebastion@irelandmail.com 2000-02-23 03:33:23 +00:00
espie
edba5cfedf MAKEFILE-> MAKE_FILE 2000-02-22 17:08:31 +00:00
dugsong
51f56b5a55 new its4 port: C/C++ src security scanner 2000-02-22 02:15:54 +00:00
brad
0ba870b439 group @dirrm tags together 2000-02-17 05:26:08 +00:00
brad
9e2f792df9 - cleanup
- remove unnecessary MAN tags
- mkdir -> ${INSTALL_DATA_DIR}
2000-02-17 05:25:13 +00:00
dugsong
cec71033a3 upgrade to version 1.5 2000-02-17 03:59:38 +00:00
espie
4420842031 All the Makefiles cvs missed first time around... 2000-02-16 10:52:08 +00:00
dugsong
17ffb44c48 update to new (changed) distfile, mark unbroken 2000-02-15 17:00:15 +00:00
turan
99dbc30829 broken, no checksum, version has changed, patches do not apply 2000-02-15 16:42:13 +00:00
turan
504f314d16 espie will not shut up about this, DISTF -> DISTFILES, PKG -> PACKAGE 2000-02-15 05:03:51 +00:00
jakob
1816e9c2a8 LICENSE_TYPE 2000-02-13 12:59:49 +00:00
turan
26435efcb1 add licensing info. GPL CRYPTO. 2000-02-13 08:47:40 +00:00
turan
87d8e36c8f comflicting views regarding NONE license. Is a patch that has no license.
Who says no license is restrictive all the time?  This port is the
perfect example of why license types should not even be looked at to
determine distribution.
2000-02-13 06:57:21 +00:00
turan
5d4f242545 public domain licenses 2000-02-12 08:58:16 +00:00
turan
ce65793f81 none licenses 2000-02-12 08:41:07 +00:00
turan
dff33701f6 ssh, rsaref is CRYPTO, patch file is NONE. Make the whole thing CRYPTO 2000-02-12 08:35:59 +00:00
turan
1574b9aa2e gpl licenses 2000-02-12 08:02:07 +00:00
turan
8d37dded6c bsd licenses 2000-02-12 06:29:49 +00:00
espie
b3ed337056 Change MAKE_FLAGS to remove the -f.
Actually reading the Makefiles proved that about one third of them was
confused about this already...
2000-02-12 00:43:57 +00:00
turan
80fdcf78c0 fix quotes, still marked broken 2000-02-11 17:17:43 +00:00
espie
a813079932 Kill a large set of deprecated variables.
Thoroughly unsubtle, most mkdir -p should probably be INSTALL* at
*install stage, and echo/ECHO_MSG is somewhat unsorted.

It's quite possible I missed a few automated changes...
2000-02-11 01:09:59 +00:00
espie
28accd1d93 Use WRKDIST where appropriate. 2000-02-11 00:37:15 +00:00
espie
1958137a5f Kill NO_WRKSUBDIR.
Clean up a few deprecated variables on the fly.
2000-02-10 23:14:27 +00:00
dugsong
dac25325f4 add lxnb port 2000-02-10 22:09:27 +00:00
dugsong
fa0d71fdeb new lxnb port - NetBus client 2000-02-10 22:08:25 +00:00
espie
e201e9d26b Kill most instances of PATCH_SITES 2000-02-02 17:02:38 +00:00
dugsong
a62775570f update to version 1.4 2000-01-28 21:13:15 +00:00
dugsong
0cb5be8acb new parse port - watch tcpdump traces in real-time 2000-01-27 20:31:50 +00:00
dugsong
7ab3afbdc5 add isic 2000-01-24 19:59:41 +00:00
dugsong
09e6aa5694 ISIC - IP stack integrity checker 2000-01-24 19:58:17 +00:00
dugsong
cf9b0abcb1 fix checksum 2000-01-24 04:41:23 +00:00
dugsong
f8a6463287 update to dsniff-1.3 2000-01-22 07:04:30 +00:00
dugsong
b23b8f34be update to version 1.2 2000-01-09 04:22:34 +00:00
brad
30c3d70933 add another dist site 2000-01-09 00:33:52 +00:00
dugsong
f234a0d152 update to 1.3.0a - 1.2.0 no longer available 2000-01-06 18:56:57 +00:00
jakob
f444645c99 Update to v1.1.1. Mostly bugfixes. 2000-01-06 10:50:01 +00:00
jakob
84a7291f38 dante added 1999-12-30 08:31:48 +00:00
jakob
a9b1b82b1c dante - a socks client and server 1999-12-30 08:30:38 +00:00
kevlo
df4d52ecba Remove nmap. It's already existed in ports/net. 1999-12-27 15:43:36 +00:00
kevlo
e7ffb876cf The nmap port has existed in ports/net. 1999-12-27 15:39:40 +00:00
kevlo
0b430486c4 Add nmap. 1999-12-27 07:27:29 +00:00
kevlo
94a5b3d73a nmap is a utility for port scanning large networks.
See the nmap homepage at http://www.insecure.org/nmap/index.html
1999-12-27 07:26:00 +00:00
fgsch
96036935d1 mkdir -> INSTALL_DATA_DIR. .for/.endfor -> cd && INSTALL_DATA. 1999-12-26 10:09:41 +00:00
brad
cdca04628e - remove now unnecessary pre-configure target
- after looking at patch-ao again it was quite clear that the previous
revision broke internal RSA support, fix patch and make one slight
improvement to it.
1999-12-24 06:22:13 +00:00
brad
2cddf37962 upgrade to gnupg 1.0.1 (minus the html documentation which does not come
with the distribution anymore it seems)
1999-12-23 02:54:24 +00:00
fgsch
b8a91c0c55 Use ${INSTALL_DATA_DIR} instead of mkdir. 1999-12-21 18:52:57 +00:00
fgsch
b5530bb24e Remove .for/.endfor in favor of cd ${WRKSRC} && ${INSTALL_PROGRAM}.
Use ${INSTALL_DATA_DIR} instead of mkdir.
1999-12-21 18:51:21 +00:00
dugsong
4d9f9a30a4 fix checksum 1999-12-21 15:39:42 +00:00
dugsong
d1947752f3 add dsniff 1999-12-20 23:01:59 +00:00
dugsong
c24e6c66b2 new dsniff port - various sniffing tools for penetration testing 1999-12-20 23:00:58 +00:00
dugsong
a94b6ef6a9 fix bug which allowed for unencrypted sessions - markus@ 1999-12-14 01:35:04 +00:00
brad
ee58b32756 almost forgot this, add missing LIB_DEPENDS for dependency on librsaref 1999-12-13 05:59:13 +00:00
brad
a0867b4c9b - remove NO_PACKAGE and NEED_VERSION tags
- improve patch-ao by also adding an option --with-rsaref so that the use
of RSAREF has to be enabled instead of enabling it based on the existance
of librsaref. Thus would allow someone to be able to build a version of
PGP on a system that has librsaref installed already. Quite useful in the
situation of doing automated package building.
1999-12-13 05:56:17 +00:00
brad
a968268103 - remove now unnecessary PATCH_LIST tag
- BUILD_DEPENDS -> LIB_DEPENDS, rsaref makes a shared library
- add patch so that pgp respects CC
1999-12-13 03:58:18 +00:00
brad
a9c6511db5 style 1999-12-13 03:04:54 +00:00
brad
e7b8eef435 - BUILD_DEPENDS -> LIB_DEPENDS, rsaref builds a shared library
- ${PREFIX} -> ${LOCALBASE} for paths to libs/headers
- define PKG_PREFIX when running the INSTALL script
1999-12-13 01:49:33 +00:00
brad
11eb75638c - re-do do-install target
- re-do rsaref Makefile using our library framework instead
- convert patch-aa to a unified diff
1999-12-13 00:34:11 +00:00
dugsong
4ba1e7ce56 missed patch in change to rsaref port 1999-12-12 22:28:02 +00:00
dugsong
86118ac3f7 use rsaref port 1999-12-12 22:26:59 +00:00
dugsong
b131dffd16 use rsaref port 1999-12-12 22:09:25 +00:00
dugsong
c1db3645d0 use rsaref port 1999-12-12 22:01:15 +00:00
brad
8622a12d9a stricter fix for oflow 1999-12-12 20:17:23 +00:00
dugsong
037ce8dad2 stricter fix for oflow 1999-12-12 18:38:51 +00:00
brad
52fce833ea forgot to use :U variable modifier in one loop 1999-12-09 17:55:55 +00:00
brad
8f2705f71f - fix install target
- add missing @dirrm to PLIST
1999-12-09 04:46:18 +00:00
brad
e03ac88ae6 - add patch for RSAREF buffer overflow
- remove deprecated variables
- cleanup Makefile
1999-12-09 03:50:57 +00:00
brad
a89ce02080 - add patch for RSAREF buffer overflow
- remove deprecated variables
- cleanup Makefile
1999-12-09 02:50:41 +00:00
dugsong
25fba4d6d5 use standard ports paths - /sbin, /var/run, /etc 1999-12-06 06:55:40 +00:00
jakob
ddeca5fa59 stunnel added 1999-12-05 18:29:46 +00:00
jakob
55c1d659cf SSL encryption wrapper for standard network daemons 1999-12-05 18:25:54 +00:00
dugsong
763ad5dc89 add l0pht tools: l0phtcrack, rdp, tempwatch 1999-12-05 18:24:48 +00:00
dugsong
46f9a67d29 tempwatch - temporary file auditing tool 1999-12-05 18:21:51 +00:00
dugsong
f2410ee5d8 rdp - ICMP router discovery protocol spoofer 1999-12-05 18:20:48 +00:00
dugsong
4f2c12f730 l0phtcrack - Microsoft LANMAN/NT password sniffer/cracker 1999-12-05 18:19:56 +00:00
brad
1d61dec1cd - add patch for RSAREF buffer overflow
- fix double slash in header path for GMP and Zlib
- stop creating ${PREFIX}/etc directory
- cleanup Makefile
1999-12-03 01:13:16 +00:00
dugsong
8e30dd7ed9 fix buffer overflow in RSA{Public,Private}Decrypt. from CORE SDI. 1999-12-02 05:29:10 +00:00
brad
e0d38f42fe remove unnecessary CONFIGURE_ENV tag; ok'd by markus@ 1999-11-30 23:13:52 +00:00
brad
b3f9c43fa6 - change maintainers email address to markus@openbsd.org
- cleanup Makefile
1999-11-30 02:54:31 +00:00