Port details |
- cops System secureness checker
- 1.04_1 security =16 1.04_1Version of this port present on the latest quarterly branch.
- Maintainer: cy@FreeBSD.org
- Port Added: unknown
- Last Update: 2023-02-15 16:55:03
- Commit Hash: d74ee97
- People watching this port, also watch:: nmap, wget, openssl, gettext, unzip
- License: not specified in port
- WWW:
- http://www.fish2.com/cops/
- Description:
- Cops is a set of programs to check how secure your system is. It
checks file and directory privileges, SUID programs, etc. It has
support for checking passwords, but this port doesn't include it
as it is DES based. This port installs cops in a single directory
area. The directory has no non-user privileges and cops is meant
to be run locally to that directory. The perl version of cops is
also included in a subdirectory.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- To install the port:
- cd /usr/ports/security/cops/ && make install clean
- To add the package, run one of these commands:
- pkg install security/cops
- pkg install cops
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: cops
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (cops104+.tar.gz) = 5c673c4868fda0e0c0ac7f7b7aab7f31a2dff8266382b1c24dca94eedfa712b5
SIZE (cops104+.tar.gz) = 288663
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- groff : textproc/groff
- Runtime dependencies:
-
- perl5>=5.32.r0<5.33 : lang/perl5.32
- There are no ports dependent upon this port
Configuration Options:
- No options to configure
- Options name:
- security_cops
- USES:
- groff perl5 shebangfix
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.04_1 15 Feb 2023 16:55:03 |
Cy Schubert (cy) |
security/cops: Permanently fix LLVM15 errors
Fix:
src/addto.c:48:17: error: incompatible pointer to integer conversion
assigning to 'char' from 'void *' [-Wint-conversion]
keypending[0] = NULL;
^ ~~~~ |
1.04_1 11 Feb 2023 04:05:55 |
Cy Schubert (cy) |
seecurity/cops: Fix build with LLVM15 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.04_1 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.04_1 20 Jul 2022 14:22:56 |
Tobias C. Berner (tcberner) |
security: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <ports@c0decafe.net>
* Aaron Dalton <aaron@FreeBSD.org>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Aldis Berjoza <aldis@bsdroot.lv>
* Alex Dupre <ale@FreeBSD.org>
* Alex Kapranoff <kappa@rambler-co.ru>
* Alex Samorukov <samm@freebsd.org>
* Alexander Botero-Lowry <alex@foxybanana.com>
* Alexander Kriventsov <avk@vl.ru>
* Alexander Leidinger <netchild@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
1.04_1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.04_1 24 Mar 2020 17:21:21 |
cy |
Make fetchable again.
Switch from komquats.com to cschubert.com. |
1.04_1 06 Nov 2019 16:26:35 |
antoine |
Mark a few ports BROKEN (unfetchable) |
1.04_1 30 May 2017 20:45:41 |
bapt |
Register dependency on groff
PR: 213725 |
1.04_1 19 Oct 2015 14:50:52 |
amdmi3 |
Improve shebangfix framework
- Support multiple values in *_OLD_CMD, i.e. we can now fix both
"/usr/bin/python" and "/usr/bin/env python" at the same time
- Default *_OLD_CMD values are now always appended, so you don't need to specify
them in individual ports
- Add lua support (depends on USES=lua)
- Add more default values, such as "/usr/bin/env foo" for python, perl, bash,
ruby and lua
- Shebangfix now matches whole words, e.g. we will no longer (erroneously)
replace "/usr/bin/perl5.005" with "${perl_CMD}5.005" (but "/usr/bin/perl -tt" is
still (correctly) replaced with "${perl_CMD} -tt")
Note that *_OLD_CMD items containing spaces must now be quoted (e.g.
perl_OLD_CMD=/bin/perl /usr/bin/perl "/usr/bin/env perl")
Update shebangfix usage according to new rules in many ports:
- Remove *_OLD_CMD for patterns now replaced by default
- Quote custom *_OLD_CMD which contain spaces
Fix shebangfix usage in many ports (irrelevant to infrastructure change):
- Remove redundant SHEBANG_LANG (no need to duplicate default langs)
- Remove redundant *_CMD (such as
python_CMD=${LOCALBASE}/bin/python${PYTHON_VER} when USES=python is present)
- Never use *_OLD_CMD in REINPLACE_CMD matchers, these should always look for
exact string
Approved by: portmgr (bapt)
Differential Revision: D3756 |
1.04_1 15 Jul 2015 17:39:47 |
amdmi3 |
- Note that the previous commit has added missing USES=perl5
- This commit fixes it as it should only be a run-dependency
Approved by: portmgr blanket |
1.04_1 14 Jul 2015 20:32:40 |
amdmi3 |
- Fix shebangs
Approved by: portmgr blanket
MFH: 2015Q3 (blanket) |
1.04 13 Nov 2014 09:02:57 |
antoine |
Cleanup plist |
1.04 12 Sep 2014 15:56:05 |
antoine |
Allow staging as a regular user |
1.04 29 Jul 2014 14:30:10 |
adamw |
Rename security/ patches to reflect the files they modify. |
1.04 01 May 2014 01:42:38 |
adamw |
STAGE support, and general cleanups. Some of the changes are a
bit more aggressive, but at this point, if I'm staging your port,
you've likely stopped caring what's done to it. |
1.04 20 Sep 2013 22:55:26 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
security) |
1.04 18 Sep 2013 13:38:49 |
cy |
Fix up plist. |
1.04 18 Sep 2013 08:20:02 |
cy |
Fix build under 10-CURRENT. |
1.04 29 Mar 2013 19:33:42 |
cs |
- Remove A/An in COMMENT
- Trim Header where applicable |
1.04 25 Sep 2011 14:56:49 |
cy |
Remove MD5 sum. |
1.04 04 Sep 2011 13:29:30 |
mandree |
Mark MAKE_JOBS_UNSAFE.
Reported by: eadler@. |
1.04 03 Sep 2011 08:03:36 |
cy |
Bring this old-school tool back from the dead.
Assume maintainership of this port. |
1.04 01 May 2011 20:14:20 |
bapt |
Remove unmaintained expired ports from security
2011-05-01 security/aafid2: Upstream disapear and distfile is no more available
2011-05-01 security/bjorb: Upstream disapear and distfile is no more available
2011-05-01 security/borzoi: Upstream disapear and distfile is no more available
2011-05-01 security/cmd5checkpw: Upstream disapear and distfile is no more
available
2011-05-01 security/cops: Upstream disapear and distfile is no more available
2011-05-01 security/find_ddos: Upstream disapear and distfile is no more
available
2011-05-01 security/ftpmap: Upstream disapear and distfile is no more available
2011-05-01 security/hafiye: Upstream disapear and distfile is no more available
2011-05-01 security/ident2: Upstream disapear and distfile is no more available
2011-05-01 security/liedentd: Upstream disapear and distfile is no more
available
2011-05-01 security/pam_pop3: Upstream disapear and distfile is no more
available
2011-05-01 security/poc: Upstream disapear and distfile is no more available
2011-05-01 security/portscanner: Upstream disapear and distfile is no more
available
2011-05-01 security/ppgen: Upstream disapear and distfile is no more available
2011-05-01 security/qident: Upstream disapear and distfile is no more available
2011-05-01 security/quintuple-agent: Upstream disapear and distfile is no more
available
2011-05-01 security/rc5pipe: Upstream disapear and distfile is no more available
2011-05-01 security/rid: Upstream disapear and distfile is no more available
2011-05-01 security/ssh: Upstream disapear and distfile is no more available
2011-05-01 security/tea-total: Upstream disapear and distfile is no more
available
2011-05-01 security/uberkey: Upstream disapear and distfile is no more available |
1.04 13 Mar 2011 21:30:59 |
bapt |
Deprecate unmaintained ports from security where upstream disapear and/or
where no distfiles can be found and are not used by maintained ports |
1.04 21 Dec 2009 02:19:12 |
dougb |
For ports maintained by ports@FreeBSD.org, remove names and/or
e-mail addresses from the pkg-descr file that could reasonably
be mistaken for maintainer contact information in order to avoid
confusion on the part of users looking for support. As a pleasant
side effect this also avoids confusion and/or frustration for people
who are no longer maintaining those ports. |
1.04 26 May 2006 03:59:53 |
mnag |
- Re-add primary master site, while here fix WWW
Notified by: sam |
1.04 25 May 2006 01:46:00 |
mnag |
- Fix master sites
PR: 97827
Submitted by: Martin Wilke <freebsd___unixfreunde.de> |
1.04 25 Nov 2005 18:01:16 |
pav |
- Add SHA256 |
1.04 17 Mar 2004 18:29:46 |
trevor |
SIZEify. |
1.04 20 Feb 2003 18:59:13 |
knu |
De-pkg-comment. |
08 Oct 2000 07:30:58 |
asami |
Convert category security to new layout. |
15 Jul 2000 18:35:29 |
will |
Fix MASTER_SITES; add WWW. Add MAINTAINER while I'm here. |