Skip to content

Commit 6f0a0d1

Browse files
committed
LICENSE and CHANGES
1 parent c6cdb4d commit 6f0a0d1

6 files changed

+58
-13
lines changed

CHANGES

+31-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,33 @@
1-
Changes with nginx-ssl-ja3 0.0.1 20 Aug 2017
1+
Changes nginx-ssl-ja3 v0.0.2 3 Jun 2019
2+
3+
nginx-ssl-ja3: nginx variables for ja3 fingerprint
4+
- nginx modules
5+
- features for ja3 are capture once on connection setup in nginx event openssl code
6+
- fixes grease values being included in eliptic curves values
7+
- patches OpenSSL to include some extra client extensions
8+
- extended_master_secret -> 23
9+
- compress_certificate -> 27
10+
- record_size_limit -> 28
11+
- session_ticket -> 35
12+
- fixes memory leak with unused ssl_session
13+
- tests
14+
- integration tests with t/http_ssl_ja3.t
15+
- documentation
16+
- better documentation how to build and setup
17+
- docker
18+
- better Dockerfile - no need of git checkout
19+
- travis
20+
- upgrade to ubuntu bionic
221

3-
*) nginx modules
4-
*) config
5-
*) http_ssl_ja3_hash variable
6-
*) stream_ssl_ja3_hash variable
7-
*) docker
8-
*) dockerfiles
9-
*) compose
10-
*) travis
1122

23+
Changes with nginx-ssl-ja3 0.0.1 20 Aug 2017
24+
25+
nginx-ssl-ja3: nginx variables for ja3 fingerprint
26+
- nginx modules
27+
- config
28+
- $http_ssl_ja3_hash variable
29+
- $stream_ssl_ja3_hash variable
30+
- docker
31+
- dockerfiles
32+
- compose
33+
- travis

LICENSE

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Copyright (C) 2017-2019 Paulo Pacheco
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions
6+
are met:
7+
1. Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
2. Redistributions in binary form must reproduce the above copyright
10+
notice, this list of conditions and the following disclaimer in the
11+
documentation and/or other materials provided with the distribution.
12+
13+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23+
SUCH DAMAGE.

src/ngx_http_ssl_ja3_module.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017 Paulo Pacheco
2+
* Copyright (C) 2017-2019 Paulo Pacheco
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

src/ngx_ssl_ja3.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017 Paulo Pacheco
2+
* Copyright (C) 2017-2019 Paulo Pacheco
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

src/ngx_ssl_ja3.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017 Paulo Pacheco
2+
* Copyright (C) 2017-2019 Paulo Pacheco
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

src/ngx_stream_ssl_ja3_preread_module.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017 Paulo Pacheco
2+
* Copyright (C) 2017-2019 Paulo Pacheco
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)