LibHTP is a security-aware parser for the HTTP protocol and the related bits
and pieces. The goals of the project, in the order of importance, are as follows: 1. Completeness of coverage; LibHTP must be able to parse virtually all traffic that is found in practice. 2. Permissive parsing; LibHTP must never fail to parse a stream that would be parsed by some other web server. 3. Awareness of evasion techniques; LibHTP must be able to detect and effectively deal with various evasion techniques, producing, where practical, identical or practically identical results as the web server processing the same traffic stream. 4. Performance; The performance must be adequate for the desired tasks. Completeness and security are often detremental to performance. Our idea of handling the conflicting requirements is to put the library user in control, allowing him to choose the most desired library characteristic. Author: Ivan Ristic <ivanr@webkreator.com> WWW: http://www.libhtp.org
This commit is contained in:
parent
3c4e640d55
commit
38345ab772
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=287987
5 changed files with 61 additions and 0 deletions
|
@ -849,6 +849,7 @@
|
|||
SUBDIR += libhash
|
||||
SUBDIR += libhid
|
||||
SUBDIR += libhoard
|
||||
SUBDIR += libhtp
|
||||
SUBDIR += libical
|
||||
SUBDIR += libinotify
|
||||
SUBDIR += libiqxmlrpc
|
||||
|
|
22
devel/libhtp/Makefile
Normal file
22
devel/libhtp/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
# New ports collection makefile for: libhtp
|
||||
# Date created: 19 December 2011
|
||||
# Whom: wxs@FreeBSD.org
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= libhtp
|
||||
PORTVERSION= 0.2.6
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.openinfosecfoundation.org/download/
|
||||
|
||||
MAINTAINER= wxs@FreeBSD.org
|
||||
COMMENT= Security-aware parser for the HTTP protocol
|
||||
|
||||
WRKSRC= ${WRKDIR}/htp-${PORTVERSION}
|
||||
|
||||
USE_LDCONFIG= yes
|
||||
USE_GNOME= pkgconfig gnomehack
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
.include <bsd.port.mk>
|
2
devel/libhtp/distinfo
Normal file
2
devel/libhtp/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (libhtp-0.2.6.tar.gz) = 59c4f46ccd88430f6d392cdc43bb926a84336d07595657510435a6c112eede87
|
||||
SIZE (libhtp-0.2.6.tar.gz) = 354351
|
23
devel/libhtp/pkg-descr
Normal file
23
devel/libhtp/pkg-descr
Normal file
|
@ -0,0 +1,23 @@
|
|||
LibHTP is a security-aware parser for the HTTP protocol and the related bits
|
||||
and pieces. The goals of the project, in the order of importance, are as
|
||||
follows:
|
||||
|
||||
1. Completeness of coverage; LibHTP must be able to parse virtually all
|
||||
traffic that is found in practice.
|
||||
|
||||
2. Permissive parsing; LibHTP must never fail to parse a stream that would
|
||||
be parsed by some other web server.
|
||||
|
||||
3. Awareness of evasion techniques; LibHTP must be able to detect and
|
||||
effectively deal with various evasion techniques, producing, where
|
||||
practical, identical or practically identical results as the web
|
||||
server processing the same traffic stream.
|
||||
|
||||
4. Performance; The performance must be adequate for the desired tasks.
|
||||
Completeness and security are often detremental to performance. Our
|
||||
idea of handling the conflicting requirements is to put the library
|
||||
user in control, allowing him to choose the most desired library
|
||||
characteristic.
|
||||
|
||||
Author: Ivan Ristic <ivanr@webkreator.com>
|
||||
WWW: http://www.libhtp.org
|
13
devel/libhtp/pkg-plist
Normal file
13
devel/libhtp/pkg-plist
Normal file
|
@ -0,0 +1,13 @@
|
|||
include/htp/hooks.h
|
||||
include/htp/htp_decompressors.h
|
||||
include/htp/bstr.h
|
||||
include/htp/utf8_decoder.h
|
||||
include/htp/dslib.h
|
||||
include/htp/htp.h
|
||||
lib/libhtp-0.2.so
|
||||
lib/libhtp-0.2.so.1
|
||||
lib/libhtp.a
|
||||
lib/libhtp.la
|
||||
lib/libhtp.so
|
||||
libdata/pkgconfig/htp.pc
|
||||
@dirrm include/htp
|
Loading…
Reference in a new issue