Received: by mail.netbsd.org (Postfix, from userid 605) id 70FF584D43; Sun, 30 May 2021 01:16:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AA86484D16 for ; Sun, 30 May 2021 01:16:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 0aKNzi9zTY2s for ; Sun, 30 May 2021 01:16:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AF4AC84CEE for ; Sun, 30 May 2021 01:16:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A1BEFFA95; Sun, 30 May 2021 01:16:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162233738842240" MIME-Version: 1.0 Date: Sun, 30 May 2021 01:16:28 +0000 From: "Pierre Pronchery" Subject: CVS commit: pkgsrc/security To: pkgsrc-changes@NetBSD.org Reply-To: khorben@netbsd.org X-Mailer: log_accum Message-Id: <20210530011628.A1BEFFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162233738842240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: khorben Date: Sun May 30 01:16:28 UTC 2021 Modified Files: pkgsrc/security/py-yara: Makefile distinfo pkgsrc/security/yara: Makefile Makefile.common PLIST distinfo Removed Files: pkgsrc/security/yara/patches: patch-libyara_libyara.c patch-libyara_re.c patch-libyara_re__lexer.l Log Message: {,py-}yara: update to version 4.1.0 Since version 3.11.0: YARA v4.1.0 * New operators icontains, endswith, iendswith, startswith, istartswith. * Accept \t escape sequence in text strings. * Add --no-follow-links command-line option to yara. * Prevent yara from following links to "." (@1D2D). * Implemented non-blocking scanning API (@simonhf). * When a string causes too many matches, YARA raises a warning instead of failing (@wxsBSD). * BUGFIX: The use of --timeout could hang yara when scanning directories or lists of files (#1481). * BUGFIX: Incorrect parsing of PE certificates (#1443). * BUGFIX: Short-circuit evaluation not working fine with undefined expressions. YARA v4.1.0-rc2 * Don't raise warnings for non-ASCII strings. YARA v4.1.0-rc1 * New operators icontains, endswith, iendswith, startswith, istartswith. * Raise warnings for non-ascii strings. * Accept \t escape sequence in text strings. * Add --no-follow-links command-line option to yara. * Prevent yara from following links to "." (@1D2D). * Implemented non-blocking scanning API (@simonhf). * When a string causes too many matches, YARA raises a warning instead of failing. YARA v4.0.5 * BUGFIX: Fix bug in "macho" module introduced in v4.0.4. YARA v4.0.4 * BUGFIX: Multiple out-of-bounds reads in "macho" module. Credits to Luis Merino from X41 D-SEC GmbH for reporting these issues. YARA v4.0.3 * BUGFIX: Multiple out-of-bounds read in "dotnet" module. YARA v4.0.2 * BUGFIX: Use-after-free bug in PE module (#1287). * BUGFIX: Incorrect errors in rules when a single rule is badly formatted (#1294). * BUGFIX: Assertion failed with rules that have invalid syntax (#1295). * BUGFIX: Integer overflow causing missed matches on files larger than 2GB (#1304). * BUGFIX: Crashes in Mac OS while scanning binaries with a signature that can't be verified (#1309). YARA v4.0.1 * Update sandboxed API (#1276). * BUGFIX: Fix regression in exports parsing in PE module (2bf67e6). * BUGFIX: Fix unaligned accesses in ARM (e1654ae). YARA v4.0.0 * New string modifiers base64 and base64wide (#1185). * New string modifier private (#1096). * Iterators for dictionaries and arrays (#1141). * Multiple API changes. * Memory footprint greatly reduced, specially when compiling large numbers of rules. * New commmand-line option --scan-list (#1261). * Added pdb_path field to "pe" module. * Added export_details array to "pe" module. * Added exports_index functions to "pe" module. * Improvements to "cuckoo" module. * BUGFIX: PE files with multiple signatures are parsed correctly (#940). * BUGFIX: Fix PE rich header parsing (#1164). * BUGFIX: Buffer overruns in "dotnet" module (#1167, #1173). To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/security/py-yara/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/security/py-yara/distinfo cvs rdiff -u -r1.10 -r1.11 pkgsrc/security/yara/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/security/yara/Makefile.common \ pkgsrc/security/yara/distinfo cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/yara/PLIST cvs rdiff -u -r1.1 -r0 pkgsrc/security/yara/patches/patch-libyara_libyara.c \ pkgsrc/security/yara/patches/patch-libyara_re.c \ pkgsrc/security/yara/patches/patch-libyara_re__lexer.l Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162233738842240 Content-Disposition: inline Content-Length: 5500 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-yara/Makefile diff -u pkgsrc/security/py-yara/Makefile:1.10 pkgsrc/security/py-yara/Makefile:1.11 --- pkgsrc/security/py-yara/Makefile:1.10 Mon Nov 4 21:13:01 2019 +++ pkgsrc/security/py-yara/Makefile Sun May 30 01:16:28 2021 @@ -1,15 +1,14 @@ -# $NetBSD: Makefile,v 1.10 2019/11/04 21:13:01 rillig Exp $ +# $NetBSD: Makefile,v 1.11 2021/05/30 01:16:28 khorben Exp $ -DISTNAME= yara-python-${VERSION} -PKGNAME= ${PYPKGPREFIX}-yara-${VERSION} +DISTNAME= yara-python-${YARA_VERSION} +PKGNAME= ${PYPKGPREFIX}-yara-${YARA_VERSION} CATEGORIES= security python GITHUB_PROJECT= yara-python MASTER_SITES= ${MASTER_SITE_GITHUB:=VirusTotal/} COMMENT= Yara python bindings - -PYTHON_VERSIONS_ACCEPTED= 27 +LICENSE= apache-2.0 .include "../../security/yara/Makefile.common" .include "../../security/yara/buildlink3.mk" Index: pkgsrc/security/py-yara/distinfo diff -u pkgsrc/security/py-yara/distinfo:1.11 pkgsrc/security/py-yara/distinfo:1.12 --- pkgsrc/security/py-yara/distinfo:1.11 Sat Dec 14 10:50:10 2019 +++ pkgsrc/security/py-yara/distinfo Sun May 30 01:16:28 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2019/12/14 10:50:10 khorben Exp $ +$NetBSD: distinfo,v 1.12 2021/05/30 01:16:28 khorben Exp $ -SHA1 (yara-python-3.11.0.tar.gz) = 8e1c6c31875d1df685b4a97faf8d58287e8c38a4 -RMD160 (yara-python-3.11.0.tar.gz) = 000398c4041c1f495320d3ce7ad500b3c3ffddb4 -SHA512 (yara-python-3.11.0.tar.gz) = 0c8e6cbe51aa858c6d56b95c88bd450016924008b57b4910ed8edfb7bba4d7bfc18736844817978f74e72bed6765c484f275de4e7a53ec85048fb01713b6e959 -Size (yara-python-3.11.0.tar.gz) = 31830 bytes +SHA1 (yara-python-4.1.0.tar.gz) = e47a2e6f3826de624be3da293080ac3a9ee863b1 +RMD160 (yara-python-4.1.0.tar.gz) = 24013ec2e3a6fac9383663efc28156625de4fd05 +SHA512 (yara-python-4.1.0.tar.gz) = 8b9ce780b6639ab2ee5222adec888c7e0fb6be81c7c64a8b33b033de3f261f9707aa208b7a3a86749f6e86a83fe6d73941c816857faf6eb714399d1f50239b51 +Size (yara-python-4.1.0.tar.gz) = 33717 bytes Index: pkgsrc/security/yara/Makefile diff -u pkgsrc/security/yara/Makefile:1.10 pkgsrc/security/yara/Makefile:1.11 --- pkgsrc/security/yara/Makefile:1.10 Fri May 14 11:47:57 2021 +++ pkgsrc/security/yara/Makefile Sun May 30 01:16:28 2021 @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.10 2021/05/14 11:47:57 nia Exp $ +# $NetBSD: Makefile,v 1.11 2021/05/30 01:16:28 khorben Exp $ -DISTNAME= yara-${VERSION} -PKGREVISION= 1 +DISTNAME= yara-${YARA_VERSION} CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GITHUB:=VirusTotal/} COMMENT= Pattern matching swiss knife for malware researchers +LICENSE= modified-bsd USE_TOOLS+= pkg-config automake autoreconf flex USE_LIBTOOL= yes Index: pkgsrc/security/yara/Makefile.common diff -u pkgsrc/security/yara/Makefile.common:1.12 pkgsrc/security/yara/Makefile.common:1.13 --- pkgsrc/security/yara/Makefile.common:1.12 Sat Dec 14 10:46:08 2019 +++ pkgsrc/security/yara/Makefile.common Sun May 30 01:16:28 2021 @@ -1,11 +1,10 @@ -# $NetBSD: Makefile.common,v 1.12 2019/12/14 10:46:08 khorben Exp $ +# $NetBSD: Makefile.common,v 1.13 2021/05/30 01:16:28 khorben Exp $ # # used by security/yara/Makefile # used by security/py-yara/Makefile -VERSION= 3.11.0 -GITHUB_TAG= v${VERSION} +YARA_VERSION= 4.1.0 +GITHUB_TAG= v${YARA_VERSION} MAINTAINER= khorben@defora.org HOMEPAGE= https://virustotal.github.io/yara/ -LICENSE= apache-2.0 Index: pkgsrc/security/yara/distinfo diff -u pkgsrc/security/yara/distinfo:1.12 pkgsrc/security/yara/distinfo:1.13 --- pkgsrc/security/yara/distinfo:1.12 Sat Dec 14 10:46:08 2019 +++ pkgsrc/security/yara/distinfo Sun May 30 01:16:28 2021 @@ -1,10 +1,6 @@ -$NetBSD: distinfo,v 1.12 2019/12/14 10:46:08 khorben Exp $ +$NetBSD: distinfo,v 1.13 2021/05/30 01:16:28 khorben Exp $ -SHA1 (yara-3.11.0.tar.gz) = 81a243423352d66f5ec0cb657098c27f035cd164 -RMD160 (yara-3.11.0.tar.gz) = 18f28d9c6cface071f2526ca7d7c64a0b3a848f9 -SHA512 (yara-3.11.0.tar.gz) = 26d800284a2de07195e4a480eb7125b1f5ad0265b284bfbeee10dbab162ea0f419c9e2ea5c4ed5fa25a46a2c9e3c6b077dfe1cafece79251e20d5d70f91b80a8 -Size (yara-3.11.0.tar.gz) = 772122 bytes -SHA1 (patch-common.h) = d85b8be6ee384630f8e1b7ffc3c126f25d13e956 -SHA1 (patch-libyara_libyara.c) = 3be4325f344676cc490ff262483b76fab4b080fa -SHA1 (patch-libyara_re.c) = 4376d943b32fc0e13cb2b4ced99467da1f263da0 -SHA1 (patch-libyara_re__lexer.l) = 169802090dd922f06d8c32a0d1ea5409cf660f61 +SHA1 (yara-4.1.0.tar.gz) = 6aaf2696a9d00b89fea434eb013073ed569f3d48 +RMD160 (yara-4.1.0.tar.gz) = aa6999b4b5143c03aae26ddd791c7d7a7d5a4092 +SHA512 (yara-4.1.0.tar.gz) = b4b3d004181f4a5c7f35103082977f72155b1a80bcde84c09c68951b57c9b6cbb1304591172de72bdbd0b5a36c98a4671c5e4d428dfde809df717c32df4e2922 +Size (yara-4.1.0.tar.gz) = 935770 bytes Index: pkgsrc/security/yara/PLIST diff -u pkgsrc/security/yara/PLIST:1.6 pkgsrc/security/yara/PLIST:1.7 --- pkgsrc/security/yara/PLIST:1.6 Sat Dec 14 10:46:08 2019 +++ pkgsrc/security/yara/PLIST Sun May 30 01:16:28 2021 @@ -1,10 +1,11 @@ -@comment $NetBSD: PLIST,v 1.6 2019/12/14 10:46:08 khorben Exp $ +@comment $NetBSD: PLIST,v 1.7 2021/05/30 01:16:28 khorben Exp $ bin/yara bin/yarac include/yara.h include/yara/ahocorasick.h include/yara/arena.h include/yara/atoms.h +include/yara/base64.h include/yara/bitmask.h include/yara/compiler.h include/yara/error.h @@ -17,6 +18,7 @@ include/yara/libyara.h include/yara/limits.h include/yara/mem.h include/yara/modules.h +include/yara/notebook.h include/yara/object.h include/yara/parser.h include/yara/proc.h --_----------=_162233738842240--