[Forensics-changes] [yara] 97/368: Merge remote-tracking branch 'core/master'

Hilko Bengen bengen at moszumanska.debian.org
Sat Jul 1 10:30:16 UTC 2017


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

bengen pushed a commit to annotated tag v3.5.0
in repository yara.

commit 0fbddb4d1845a6e9157fa1f82ba9f3881070a2d6
Merge: df57f01 ace9ede
Author: Mario Suvajac <msuvajac at gmail.com>
Date:   Wed Oct 28 14:11:18 2015 +0100

    Merge remote-tracking branch 'core/master'

 .gitignore                                  |    5 +
 AUTHORS                                     |   17 +-
 CONTRIBUTORS                                |   36 +
 Makefile.am                                 |   14 +-
 README.md                                   |  204 +-
 args.c                                      |  278 ++
 args.h                                      |   92 +
 bootstrap.sh                                |   64 +-
 config.h                                    |   63 -
 configure.ac                                |   96 +-
 dist/yara-python.spec                       |   35 +
 dist/yara.spec                              |   85 +
 doc/YARA User's Manual.pdf                  |  Bin 258130 -> 0 bytes
 docs/Makefile                               |  177 ++
 docs/capi.rst                               |  672 +++++
 docs/commandline.rst                        |  121 +
 docs/conf.py                                |  267 ++
 docs/gettingstarted.rst                     |  135 +
 docs/index.rst                              |   45 +
 docs/make.bat                               |  242 ++
 docs/modules.rst                            |   23 +
 docs/modules/cuckoo.rst                     |  149 +
 docs/modules/elf.rst                        |  265 ++
 docs/modules/hash.rst                       |   66 +
 docs/modules/magic.rst                      |   58 +
 docs/modules/math.rst                       |  100 +
 docs/modules/pe.rst                         |  508 ++++
 docs/writingmodules.rst                     |  994 +++++++
 docs/writingrules.rst                       | 1152 ++++++++
 docs/yarapython.rst                         |  302 ++
 libyara/Makefile.am                         |   87 +-
 libyara/ahocorasick.c                       |   39 +-
 libyara/arena.c                             |  384 +--
 libyara/atoms.c                             |  297 +-
 libyara/compiler.c                          |  559 ++--
 libyara/compiler.h                          |   42 -
 libyara/config.h                            |   64 -
 libyara/exception.h                         |  110 +
 libyara/exec.c                              | 1063 +++++--
 libyara/exec.h                              |   96 -
 libyara/exefiles.c                          |   60 +-
 libyara/filemap.c                           |  352 ++-
 libyara/grammar.c                           | 3196 +++++++++++++--------
 libyara/grammar.h                           |  207 +-
 libyara/grammar.y                           | 2585 +++++++++++------
 libyara/hash.c                              |   48 +-
 libyara/hex_grammar.c                       |  599 ++--
 libyara/hex_grammar.h                       |    4 +-
 libyara/hex_grammar.y                       |  466 ++--
 libyara/hex_lexer.c                         |  324 ++-
 libyara/hex_lexer.l                         |  142 +-
 libyara/{proc.h => include/yara.h}          |   21 +-
 libyara/{ => include/yara}/ahocorasick.h    |   11 +-
 libyara/{ => include/yara}/arena.h          |   72 +-
 libyara/{ => include/yara}/atoms.h          |   35 +-
 libyara/include/yara/compiler.h             |  205 ++
 libyara/{ => include/yara}/elf.h            |   66 +-
 libyara/include/yara/error.h                |  107 +
 libyara/include/yara/exec.h                 |  162 ++
 libyara/{ => include/yara}/exefiles.h       |   23 +-
 libyara/{ => include/yara}/filemap.h        |   48 +-
 libyara/{utils.h => include/yara/globals.h} |   11 +-
 libyara/{ => include/yara}/hash.h           |   38 +-
 libyara/{ => include/yara}/hex_lexer.h      |   43 +-
 libyara/{ => include/yara}/lexer.h          |   74 +-
 libyara/include/yara/libyara.h              |   49 +
 libyara/include/yara/limits.h               |   52 +
 libyara/{ => include/yara}/mem.h            |   27 +-
 libyara/include/yara/modules.h              |  437 +++
 libyara/include/yara/object.h               |  157 ++
 libyara/{ => include/yara}/parser.h         |   72 +-
 libyara/include/yara/pe.h                   |  467 ++++
 libyara/{ => include/yara}/proc.h           |    9 +-
 libyara/{ => include/yara}/re.h             |  143 +-
 libyara/{ => include/yara}/re_lexer.h       |   44 +-
 libyara/include/yara/rules.h                |  146 +
 libyara/{exefiles.h => include/yara/scan.h} |   35 +-
 libyara/{ => include/yara}/sizedstr.h       |   19 +-
 libyara/include/yara/stream.h               |   59 +
 libyara/include/yara/strutils.h             |   77 +
 libyara/include/yara/types.h                |  529 ++++
 libyara/include/yara/utils.h                |   69 +
 libyara/lexer.c                             | 1136 ++++----
 libyara/lexer.l                             |  332 ++-
 libyara/libyara.c                           |  107 +-
 libyara/libyara.sym                         |   26 -
 libyara/mem.c                               |   87 +-
 libyara/modules.c                           |  214 ++
 libyara/modules/cuckoo.c                    |  288 ++
 libyara/modules/demo.c                      |   58 +
 libyara/modules/elf.c                       |  420 +++
 libyara/modules/hash.c                      |  412 +++
 libyara/modules/magic.c                     |  145 +
 libyara/modules/math.c                      |  589 ++++
 libyara/modules/module_list                 |   16 +
 libyara/modules/pe.c                        | 2338 ++++++++++++++++
 libyara/modules/pe_utils.c                  | 1670 +++++++++++
 libyara/modules/tests.c                     |  162 ++
 libyara/object.c                            | 1175 ++++++++
 libyara/parser.c                            |  804 ++++--
 libyara/pe.h                                |  235 --
 libyara/proc.c                              |   90 +-
 libyara/re.c                                |  983 +++++--
 libyara/re_grammar.c                        |  540 ++--
 libyara/re_grammar.h                        |   10 +-
 libyara/re_grammar.y                        |  450 +--
 libyara/re_lexer.c                          |  533 ++--
 libyara/re_lexer.l                          |  239 +-
 libyara/rules.c                             | 1364 +++------
 libyara/scan.c                              |  947 +++++++
 libyara/{sizedstr.h => sizedstr.c}          |   44 +-
 libyara/stino.settings                      |    5 +
 libyara/{sizedstr.h => stream.c}            |   39 +-
 libyara/strutils.c                          |  241 ++
 libyara/utils.c                             |   64 -
 libyara/yara.h                              |  735 -----
 libyara/yara.pc.in                          |   11 +
 m4/acx_pthread.m4                           |  364 +++
 threading.c                                 |   30 +-
 threading.h                                 |    8 +-
 windows/include/config.h                    |   18 +
 windows/include/jansson.h                   |  282 ++
 windows/include/jansson_config.h            |   34 +
 windows/include/openssl/aes.h               |  147 +
 windows/include/openssl/asn1.h              | 1404 ++++++++++
 windows/include/openssl/asn1_mac.h          |  578 ++++
 windows/include/openssl/asn1t.h             |  960 +++++++
 windows/include/openssl/bio.h               |  847 ++++++
 windows/include/openssl/blowfish.h          |  129 +
 windows/include/openssl/bn.h                |  902 ++++++
 windows/include/openssl/buffer.h            |  119 +
 windows/include/openssl/camellia.h          |  130 +
 windows/include/openssl/cast.h              |  107 +
 windows/include/openssl/cmac.h              |   82 +
 windows/include/openssl/cms.h               |  501 ++++
 windows/include/openssl/comp.h              |   80 +
 windows/include/openssl/conf.h              |  263 ++
 windows/include/openssl/conf_api.h          |   89 +
 windows/include/openssl/crypto.h            |  611 ++++
 windows/include/openssl/des.h               |  248 ++
 windows/include/openssl/des_old.h           |  446 +++
 windows/include/openssl/dh.h                |  280 ++
 windows/include/openssl/dsa.h               |  327 +++
 windows/include/openssl/dso.h               |  409 +++
 windows/include/openssl/dtls1.h             |  288 ++
 windows/include/openssl/e_os2.h             |  315 +++
 windows/include/openssl/ebcdic.h            |   26 +
 windows/include/openssl/ec.h                | 1167 ++++++++
 windows/include/openssl/ecdh.h              |  125 +
 windows/include/openssl/ecdsa.h             |  260 ++
 windows/include/openssl/engine.h            |  842 ++++++
 windows/include/openssl/err.h               |  386 +++
 windows/include/openssl/evp.h               | 1409 ++++++++++
 windows/include/openssl/hmac.h              |  110 +
 windows/include/openssl/idea.h              |  103 +
 windows/include/openssl/krb5_asn.h          |  256 ++
 windows/include/openssl/kssl.h              |  192 ++
 windows/include/openssl/lhash.h             |  241 ++
 windows/include/openssl/md4.h               |  120 +
 windows/include/openssl/md5.h               |  120 +
 windows/include/openssl/mdc2.h              |   98 +
 windows/include/openssl/modes.h             |  141 +
 windows/include/openssl/obj_mac.h           | 4032 +++++++++++++++++++++++++++
 windows/include/openssl/objects.h           | 1138 ++++++++
 windows/include/openssl/ocsp.h              |  623 +++++
 windows/include/openssl/opensslconf.h       |  247 ++
 windows/include/openssl/opensslv.h          |   96 +
 windows/include/openssl/ossl_typ.h          |  209 ++
 windows/include/openssl/pem.h               |  641 +++++
 windows/include/openssl/pem2.h              |   70 +
 windows/include/openssl/pkcs12.h            |  331 +++
 windows/include/openssl/pkcs7.h             |  496 ++++
 windows/include/openssl/pqueue.h            |  100 +
 windows/include/openssl/rand.h              |  150 +
 windows/include/openssl/rc2.h               |  103 +
 windows/include/openssl/rc4.h               |   90 +
 windows/include/openssl/ripemd.h            |  107 +
 windows/include/openssl/rsa.h               |  583 ++++
 windows/include/openssl/safestack.h         | 2671 ++++++++++++++++++
 windows/include/openssl/seed.h              |  139 +
 windows/include/openssl/sha.h               |  214 ++
 windows/include/openssl/srp.h               |  172 ++
 windows/include/openssl/srtp.h              |  149 +
 windows/include/openssl/ssl.h               | 2605 +++++++++++++++++
 windows/include/openssl/ssl2.h              |  272 ++
 windows/include/openssl/ssl23.h             |   83 +
 windows/include/openssl/ssl3.h              |  699 +++++
 windows/include/openssl/stack.h             |  108 +
 windows/include/openssl/symhacks.h          |  481 ++++
 windows/include/openssl/tls1.h              |  744 +++++
 windows/include/openssl/ts.h                |  858 ++++++
 windows/include/openssl/txt_db.h            |  112 +
 windows/include/openssl/ui.h                |  383 +++
 windows/include/openssl/ui_compat.h         |   83 +
 windows/include/openssl/whrlpool.h          |   41 +
 windows/include/openssl/x509.h              | 1297 +++++++++
 windows/include/openssl/x509_vfy.h          |  567 ++++
 windows/include/openssl/x509v3.h            | 1007 +++++++
 windows/include/pcre.h                      |  294 --
 windows/include/pcreposix.h                 |  147 -
 windows/lib/jansson32.lib                   |  Bin 0 -> 305678 bytes
 windows/lib/jansson64.lib                   |  Bin 0 -> 310028 bytes
 windows/lib/libeay32.lib                    |  Bin 0 -> 13463618 bytes
 windows/lib/libeay64.lib                    |  Bin 0 -> 14038474 bytes
 windows/libyara/libyara.vcxproj             |   68 +-
 windows/yara/yara.sln                       |   22 +-
 windows/yara/yara.vcxproj                   |   32 +-
 windows/yarac/yarac.vcxproj                 |   27 +-
 yara-python/MANIFEST                        |    3 -
 yara-python/README                          |  191 --
 yara-python/setup.py                        |   12 -
 yara-python/setupwin32.py                   |   14 -
 yara-python/setupwin64.py                   |   14 -
 yara-python/tests.py                        |  631 -----
 yara-python/yara-python.c                   | 1425 ----------
 yara.c                                      | 1016 +++----
 yara.man                                    |   47 +-
 yarac.c                                     |  274 +-
 218 files changed, 66329 insertions(+), 11988 deletions(-)

-- 
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