[Forensics-changes] [yara] branch upstream updated (ea40639 -> deb91e6)

Hilko Bengen bengen at moszumanska.debian.org
Tue Aug 30 21:46:03 UTC 2016


This is an automated email from the git hooks/post-receive script.

bengen pushed a change to branch upstream
in repository yara.

      from  ea40639   Imported Upstream version 3.4.0+dfsg
       new  deb91e6   Imported Upstream version 3.5.0+dfsg

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                         |   28 +
 .travis.yml                        |   49 +
 CONTRIBUTORS                       |    1 +
 COPYING                            |  228 +--
 Makefile.am                        |    8 +
 README.md                          |   56 +-
 args.c                             |   35 +-
 args.h                             |   35 +-
 configure.ac                       |  101 +-
 docs/capi.rst                      |   22 +-
 docs/commandline.rst               |   12 +-
 docs/conf.py                       |    4 +-
 docs/gettingstarted.rst            |   62 +-
 docs/modules/cuckoo.rst            |    2 +-
 docs/modules/pe.rst                |   65 +
 docs/writingmodules.rst            |   55 +-
 docs/writingrules.rst              |  131 +-
 docs/yarapython.rst                |   24 +-
 extra/logo-small.psd               |  Bin 317296 -> 0 bytes
 extra/logo.ai                      |  293 ++++
 extra/logo.psd                     |  Bin 2909856 -> 0 bytes
 extra/logo.svg                     |   65 +
 libyara/Makefile.am                |   12 +-
 libyara/ahocorasick.c              |  819 +++++++---
 libyara/arena.c                    |  106 +-
 libyara/atoms.c                    |   94 +-
 libyara/compiler.c                 |  173 +-
 libyara/exception.h                |  125 ++
 libyara/exec.c                     |  144 +-
 libyara/exefiles.c                 |   35 +-
 libyara/filemap.c                  |   99 +-
 libyara/grammar.c                  | 3180 ++++++++++++++++++------------------
 libyara/grammar.h                  |  225 +--
 libyara/grammar.y                  |  301 ++--
 libyara/hash.c                     |  133 +-
 libyara/hex_grammar.c              | 1896 ++++++++++-----------
 libyara/hex_grammar.h              |   69 +-
 libyara/hex_grammar.y              |  464 ++++--
 libyara/hex_lexer.c                |  367 +++--
 libyara/hex_lexer.l                |  103 +-
 libyara/include/yara.h             |   32 +-
 libyara/include/yara/ahocorasick.h |   78 +-
 libyara/include/yara/arena.h       |   43 +-
 libyara/include/yara/atoms.h       |   35 +-
 libyara/include/yara/compiler.h    |   39 +-
 libyara/include/yara/elf.h         |   49 +-
 libyara/include/yara/error.h       |   40 +-
 libyara/include/yara/exec.h        |   85 +-
 libyara/include/yara/exefiles.h    |   35 +-
 libyara/include/yara/filemap.h     |   45 +-
 libyara/include/yara/globals.h     |   31 +-
 libyara/include/yara/hash.h        |   69 +-
 libyara/include/yara/hex_lexer.h   |   35 +-
 libyara/include/yara/integers.h    |   66 +
 libyara/include/yara/lexer.h       |   39 +-
 libyara/include/yara/libyara.h     |   58 +-
 libyara/include/yara/limits.h      |   36 +-
 libyara/include/yara/mem.h         |   39 +-
 libyara/include/yara/modules.h     |   50 +-
 libyara/include/yara/object.h      |   45 +-
 libyara/include/yara/parser.h      |   44 +-
 libyara/include/yara/pe.h          |   51 +-
 libyara/include/yara/proc.h        |   38 +-
 libyara/include/yara/re.h          |   54 +-
 libyara/include/yara/re_lexer.h    |   35 +-
 libyara/include/yara/rules.h       |   37 +-
 libyara/include/yara/scan.h        |   36 +-
 libyara/include/yara/sizedstr.h    |   46 +-
 libyara/include/yara/stream.h      |   35 +-
 libyara/include/yara/strutils.h    |   50 +-
 libyara/include/yara/threading.h   |   65 +
 libyara/include/yara/types.h       |  358 ++--
 libyara/include/yara/utils.h       |   45 +-
 libyara/lexer.c                    |  882 +++++-----
 libyara/lexer.l                    |  132 +-
 libyara/libyara.c                  |  215 ++-
 libyara/mem.c                      |   45 +-
 libyara/modules.c                  |   91 +-
 libyara/modules/cuckoo.c           |   37 +-
 libyara/modules/demo.c             |   35 +-
 libyara/modules/elf.c              |   77 +-
 libyara/modules/hash.c             |  298 +++-
 libyara/modules/magic.c            |   73 +-
 libyara/modules/math.c             |  286 ++--
 libyara/modules/module_list        |    6 +-
 libyara/modules/pe.c               |  782 ++++++---
 libyara/modules/pe_utils.c         |   14 +-
 libyara/modules/tests.c            |   35 +-
 libyara/object.c                   |  136 +-
 libyara/parser.c                   |  180 +-
 libyara/proc.c                     |  580 ++++---
 libyara/re.c                       |  523 +++---
 libyara/re_grammar.c               | 1812 ++++++++++----------
 libyara/re_grammar.h               |   85 +-
 libyara/re_grammar.y               |  497 +++---
 libyara/re_lexer.c                 |  384 +++--
 libyara/re_lexer.l                 |  184 ++-
 libyara/rules.c                    |  422 ++---
 libyara/scan.c                     |  206 ++-
 libyara/sizedstr.c                 |   37 +-
 libyara/stream.c                   |   41 +-
 libyara/strutils.c                 |   47 +-
 libyara/threading.c                |  209 +++
 sample.file                        |    1 +
 tests/blob.h                       |  180 ++
 tests/data/cdak_1024x768.exe       |  Bin 0 -> 4095 bytes
 tests/data/old_ArmaFP.exe          |  Bin 0 -> 20464 bytes
 tests/data/tiny-idata-51ff.exe     |  Bin 0 -> 32768 bytes
 tests/data/tiny-idata-5200.exe     |  Bin 0 -> 32768 bytes
 tests/data/tiny.exe                |  Bin 0 -> 32768 bytes
 tests/data/tiny.notes              |   22 +
 tests/test-alignment.c             |  133 ++
 tests/test-pe.c                    |   19 +
 tests/test-rules.c                 | 1388 ++++++++++++++++
 tests/util.c                       |  246 +++
 tests/util.h                       |  165 ++
 threading.c                        |   59 +-
 threading.h                        |   43 +-
 yara-python/MANIFEST               |    3 -
 yara-python/README                 |    9 -
 yara-python/setup.py               |   40 -
 yara-python/setupwin32.py          |   29 -
 yara-python/setupwin64.py          |   29 -
 yara-python/tests.py               |  867 ----------
 yara-python/yara-python.c          | 1897 ---------------------
 yara.c                             |  224 ++-
 yara.man                           |   20 +-
 yarac.c                            |   42 +-
 128 files changed, 14416 insertions(+), 10815 deletions(-)
 create mode 100644 .travis.yml
 delete mode 100644 extra/logo-small.psd
 create mode 100644 extra/logo.ai
 delete mode 100644 extra/logo.psd
 create mode 100644 extra/logo.svg
 create mode 100644 libyara/exception.h
 create mode 100644 libyara/include/yara/integers.h
 create mode 100644 libyara/include/yara/threading.h
 create mode 100644 libyara/threading.c
 create mode 100644 sample.file
 create mode 100644 tests/blob.h
 create mode 100644 tests/data/cdak_1024x768.exe
 create mode 100644 tests/data/old_ArmaFP.exe
 create mode 100644 tests/data/tiny-idata-51ff.exe
 create mode 100755 tests/data/tiny-idata-5200.exe
 create mode 100755 tests/data/tiny.exe
 create mode 100644 tests/data/tiny.notes
 create mode 100644 tests/test-alignment.c
 create mode 100644 tests/test-pe.c
 create mode 100644 tests/test-rules.c
 create mode 100644 tests/util.c
 create mode 100644 tests/util.h
 delete mode 100644 yara-python/MANIFEST
 delete mode 100644 yara-python/README
 delete mode 100644 yara-python/setup.py
 delete mode 100644 yara-python/setupwin32.py
 delete mode 100644 yara-python/setupwin64.py
 delete mode 100644 yara-python/tests.py
 delete mode 100644 yara-python/yara-python.c

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/forensics/yara.git



More information about the forensics-changes mailing list