diff --git a/Changelog b/Changelog index 6115edd..a41ded3 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,10 @@ pcapfix Changelog ***************** +1.1.6 - 13.06.2021 +------- +* added security boundary checks in pcapng format + 1.1.5 - 05.04.2021 ------- * snaplen checks are only performed in soft mode now diff --git a/README b/README index 78aaf3a..fa6bd31 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -pcapfix v1.1.5 README +pcapfix v1.1.6 README ********************* Pcapfix is a tool to repair your damaged or corrupted pcap and pcapng files. diff --git a/pcapfix.1 b/pcapfix.1 index ad068ba..0422b66 100644 --- a/pcapfix.1 +++ b/pcapfix.1 @@ -1,4 +1,4 @@ -.TH PCAPFIX 1 "04 APR 2021" +.TH PCAPFIX 1 "13 JUN 2021" .SH "NAME" pcapfix \- repair pcap and pcapng files @@ -271,6 +271,9 @@ For further information visit the pcapfix homepage at http://f00l.de/pcapfix/. .SH "HISTORY" .TP 5 +1.1.6 - 13.06.2021 +* added security boundary checks in pcapng format +.TP 1.1.5 - 05.04.2021 * snaplen checks are only performed in soft mode now .br diff --git a/pcapfix.c b/pcapfix.c index d471007..2b6979b 100644 --- a/pcapfix.c +++ b/pcapfix.c @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License along with * Pcapfix. If not, see http://www.gnu.org/licenses/. * - * Last Modified: 04.05.2021 + * Last Modified: 13.06.2021 * ******************************************************************************* * @@ -45,7 +45,7 @@ #include "pcap_kuznet.h" #include "pcapng.h" -#define VERSION "1.1.6-DEVEL" /* pcapfix version */ +#define VERSION "1.1.6" /* pcapfix version */ #define BTSNOOP_MAGIC 0x6E737462 /* btsnoop file magic (first 4 bytes) */ #define SNOOP_MAGIC 0x6f6f6e73 /* snoop file magic (first 4 bytes) */