View | Details | Raw Unified | Return to bug 207315
Collapse All | Expand All

(-)b/security/Makefile (+1 lines)
Lines 189-194 Link Here
189
    SUBDIR += hitch
189
    SUBDIR += hitch
190
    SUBDIR += hlfl
190
    SUBDIR += hlfl
191
    SUBDIR += hmap
191
    SUBDIR += hmap
192
    SUBDIR += honeybadger
192
    SUBDIR += honggfuzz
193
    SUBDIR += honggfuzz
193
    SUBDIR += hotssh
194
    SUBDIR += hotssh
194
    SUBDIR += hpenc
195
    SUBDIR += hpenc
(-)b/security/honeybadger/Makefile (+25 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	honeybadger
4
PORTVERSION=	0.1
5
CATEGORIES=	security
6
7
MAINTAINER=	shawn.webb@hardenedbsd.org
8
COMMENT=	Quantum Insert detector and 0-day catcher
9
10
BUILD_DEPENDS=	go:${PORTSDIR}/lang/go
11
12
USE_GITHUB=	yes
13
GH_ACCOUNT=	david415
14
GH_TAGNAME=	4bd3210
15
16
WRKSRC=		${WRKDIR}/HoneyBadger-${GH_TAGNAME}
17
18
.include <bsd.port.pre.mk>
19
20
.include "${PORTSDIR}/lang/go/files/bsd.go.mk"
21
22
pre-build:
23
	@(cd ${GO_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GO_CMD} get)
24
25
.include <bsd.port.post.mk>
(-)b/security/honeybadger/distinfo (+2 lines)
Added Link Here
1
SHA256 (david415-honeybadger-0.1-4bd3210_GH0.tar.gz) = 56457a979f7082346d09dbb88290889f2fa560c735fb0a848587a7ad26fc209b
2
SIZE (david415-honeybadger-0.1-4bd3210_GH0.tar.gz) = 55446
(-)b/security/honeybadger/pkg-descr (+6 lines)
Added Link Here
1
HoneyBadger is primarily a comprehensive TCP stream analysis tool for
2
detecting and recording TCP injection attacks. HoneyBadger will also
3
include a variety of prototype TCP stream injections attacks which
4
prove that the TCP attack detection is reliable.
5
6
WWW: https://github.com/david415/HoneyBadger
(-)b/security/honeybadger/pkg-plist (+44 lines)
Added Link Here
1
%%GO_LIBDIR%%/%%GO_PKGNAME%%.a
2
%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE
3
%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE_BSD
4
%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.rst
5
%%GO_SRCDIR%%/%%GO_PKGNAME%%/attack/injector.go
6
%%GO_SRCDIR%%/%%GO_PKGNAME%%/blocks/LICENSE
7
%%GO_SRCDIR%%/%%GO_PKGNAME%%/blocks/blocks.go
8
%%GO_SRCDIR%%/%%GO_PKGNAME%%/blocks/blocks_test.go
9
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/coalesceInjector/main.go
10
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/handshakeHijacker/main.go
11
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/honeyBadger/main.go
12
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/%%GO_PKGNAME%%ReportTool/main.go
13
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/%%GO_PKGNAME%%ReportTool/tcp_port_distribution.py
14
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/%%GO_PKGNAME%%ReportToolColor/main.go
15
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/sprayInjector/main.go
16
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/testBpfSniffer/README
17
%%GO_SRCDIR%%/%%GO_PKGNAME%%/connection.go
18
%%GO_SRCDIR%%/%%GO_PKGNAME%%/connection_test.go
19
%%GO_SRCDIR%%/%%GO_PKGNAME%%/dispatcher.go
20
%%GO_SRCDIR%%/%%GO_PKGNAME%%/dispatcher_test.go
21
%%GO_SRCDIR%%/%%GO_PKGNAME%%/drivers/afpacket.go
22
%%GO_SRCDIR%%/%%GO_PKGNAME%%/drivers/bpf.go
23
%%GO_SRCDIR%%/%%GO_PKGNAME%%/drivers/libpcap.go
24
%%GO_SRCDIR%%/%%GO_PKGNAME%%/drivers/register.go
25
%%GO_SRCDIR%%/%%GO_PKGNAME%%/logging/attack_logger.go
26
%%GO_SRCDIR%%/%%GO_PKGNAME%%/logging/metadata_attack_logger.go
27
%%GO_SRCDIR%%/%%GO_PKGNAME%%/logging/pcap_logger.go
28
%%GO_SRCDIR%%/%%GO_PKGNAME%%/logging/pcap_logger_test.go
29
%%GO_SRCDIR%%/%%GO_PKGNAME%%/logging/rotating_writer.go
30
%%GO_SRCDIR%%/%%GO_PKGNAME%%/logging/util_test.go
31
%%GO_SRCDIR%%/%%GO_PKGNAME%%/ordered_coalesce.go
32
%%GO_SRCDIR%%/%%GO_PKGNAME%%/ordered_coalesce_test.go
33
%%GO_SRCDIR%%/%%GO_PKGNAME%%/pcap_integration_test.go
34
%%GO_SRCDIR%%/%%GO_PKGNAME%%/retrospective.go
35
%%GO_SRCDIR%%/%%GO_PKGNAME%%/retrospective_test.go
36
%%GO_SRCDIR%%/%%GO_PKGNAME%%/sniffer.go
37
%%GO_SRCDIR%%/%%GO_PKGNAME%%/supervisor.go
38
%%GO_SRCDIR%%/%%GO_PKGNAME%%/types/events.go
39
%%GO_SRCDIR%%/%%GO_PKGNAME%%/types/flow.go
40
%%GO_SRCDIR%%/%%GO_PKGNAME%%/types/flow_test.go
41
%%GO_SRCDIR%%/%%GO_PKGNAME%%/types/packet_source.go
42
%%GO_SRCDIR%%/%%GO_PKGNAME%%/types/reassembly.go
43
%%GO_SRCDIR%%/%%GO_PKGNAME%%/types/ring.go
44
%%GO_SRCDIR%%/%%GO_PKGNAME%%/types/sequence.go

Return to bug 207315