• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H03-May-2022-2,037722

htp/H03-May-2022-25,34213,476

m4/H17-Nov-2021-10,4029,497

test/H03-May-2022-40,48426,980

AUTHORSH A D17-Nov-2021276 76

COPYINGH A D17-Nov-202112 11

ChangeLogH A D17-Nov-20219.9 KiB376211

INSTALLH A D17-Nov-202115.4 KiB369287

LICENSEH A D17-Nov-20211.5 KiB3125

Makefile.amH A D03-May-2022977 3826

Makefile.inH A D03-May-202228.7 KiB919812

NEWSH A D17-Nov-20210

NOTICEH A D17-Nov-20210

READMEH A D17-Nov-20212.6 KiB7551

VERSIONH A D17-Nov-202163 32

aclocal.m4H A D17-Nov-202141.1 KiB1,1411,036

compileH A D17-Nov-20217.2 KiB349259

config.guessH A D17-Nov-202143.2 KiB1,4811,288

config.rpathH A D17-Nov-20210

config.subH A D17-Nov-202135.3 KiB1,8021,661

configureH A D17-Nov-2021610.5 KiB19,98016,883

configure.acH A D17-Nov-20218 KiB276237

depcompH A D17-Nov-202123 KiB792502

get-version.shH A D17-Nov-2021487 3323

htp.pc.inH A D17-Nov-2021322 1310

htp_config_auto_gen.h.inH A D17-Nov-20212 KiB8053

install-shH A D17-Nov-202115 KiB519337

ltmain.shH A D17-Nov-2021319.4 KiB11,2508,044

missingH A D17-Nov-20216.7 KiB216143

test-driverH A D17-Nov-20214.5 KiB14987

README

1LibHTP
2============================================================================
3Copyright 2009-2010 Open Information Security Foundation
4Copyright 2010-2013 Qualys, Inc.
5============================================================================
6
7LibHTP is a security-aware parser for the HTTP protocol and the related bits
8and pieces. The goals of the project, in the order of importance, are as
9follows:
10
11 1. Completeness of coverage; LibHTP must be able to parse virtually all
12    traffic that is found in practice.
13
14 2. Permissive parsing; LibHTP must never fail to parse a stream that would
15    be parsed by some other web server.
16
17 3. Awareness of evasion techniques; LibHTP must be able to detect and
18    effectively deal with various evasion techniques, producing, where
19    practical, identical or practically identical results as the web
20    server processing the same traffic stream.
21
22 4. Performance; The performance must be adequate for the desired tasks.
23    Completeness and security are often detrimental to performance. Our
24    idea of handling the conflicting requirements is to put the library
25    user in control, allowing him to choose the most desired library
26    characteristic.
27
28 | IMPORTANT   LIBHTP IS NOT YET CONSIDERED STABLE. USE AT YOUR OWN RISK. DO NOT
29 |             USE IN PRODUCTION. WORK IS CURRENTLY UNDER WAY TO ENSURE THAT
30 |             LIBHTP IS SECURE AND THAT IT PERFORMS WELL.
31
32 | STATUS      LIBHTP IS VERY YOUNG AT THIS POINT. IT WILL BE SOME TIME BEFORE
33 |             IT CAN BE CONSIDER COMPLETE. AT THE MOMENT, THE FOCUS OF DEVELOPMENT
34 |             IS ON ACHIEVING THE FIRST TWO GOALS.
35
36See the LICENSE, COPYING and NOTICE files distributed with this work for
37information regarding licensing, copying and copyright ownership.
38
39
40INSTALLATION
41------------
42
43Assuming you're using an already packaged version of LibHTP, the installation
44process should be as simple as:
45
46  $ sudo chmod u+x autogen.sh
47  $ ./autogen.sh
48  $ ./configure
49  $ make
50  $ sudo make install
51
52If you've retrieved your LibHTP directly from the repository, you will need
53to perform the following steps first:
54
55 1. Update the version number in VERSION.
56
57 2. Run autogen.sh, which will update the build system.
58
59
60
61DOCUMENTATION
62-------------
63
64The best documentation at this time is the code itself and the Doxygen output (which
65should be all right). There's also a quick start guide in the doc/ folder, which
66should give you enough information to get going.
67
68
69LICENSE
70-------
71
72LibHTP is licensed under the BSD 3-Clause license (also known as "BSD New" and
73"BSD Simplified".) The complete text of the license is enclosed in the file LICENSE.
74
75