Skip to content

Commit

Permalink
Fix version of yara submodule.
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Aug 9, 2022
1 parent a715303 commit 3e1f9cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yara
Submodule yara updated 89 files
+0 −4 .gitattributes
+2 −9 .github/workflows/build.yml
+0 −31 .github/workflows/coverity.yml
+0 −1 AUTHORS
+0 −1 CONTRIBUTORS
+1 −5 Makefile.am
+0 −1 README.md
+0 −16 SECURITY.md
+0 −22 bazel/yara.bzl
+1 −11 cli/yara.c
+1 −14 configure.ac
+4 −4 docs/capi.rst
+2 −2 docs/commandline.rst
+1 −1 docs/conf.py
+0 −7 docs/gettingstarted.rst
+0 −105 docs/modules/dotnet.rst
+0 −11 docs/modules/elf.rst
+0 −119 docs/modules/pe.rst
+3 −35 docs/writingrules.rst
+1 −6 docs/yarapython.rst
+0 −18 libyara/Makefile.am
+50 −85 libyara/arena.c
+0 −2 libyara/atoms.c
+0 −7 libyara/compiler.c
+31 −181 libyara/exec.c
+774 −1,152 libyara/grammar.c
+1 −1 libyara/grammar.h
+195 −247 libyara/grammar.y
+3 −3 libyara/hash.c
+1,278 −1,193 libyara/hex_grammar.c
+24 −44 libyara/hex_grammar.h
+1 −23 libyara/hex_grammar.y
+83 −127 libyara/hex_lexer.c
+0 −27 libyara/hex_lexer.l
+0 −206 libyara/include/authenticode-parser/authenticode.h
+0 −64 libyara/include/tlshc/tlsh.h
+7 −8 libyara/include/yara/compiler.h
+8 −207 libyara/include/yara/dotnet.h
+0 −9 libyara/include/yara/elf.h
+0 −34 libyara/include/yara/elf_utils.h
+0 −1 libyara/include/yara/error.h
+74 −77 libyara/include/yara/exec.h
+1 −1 libyara/include/yara/libyara.h
+2 −4 libyara/include/yara/parser.h
+18 −12 libyara/include/yara/pe.h
+5 −0 libyara/include/yara/pe_utils.h
+33 −37 libyara/include/yara/re.h
+0 −21 libyara/include/yara/simple_str.h
+0 −11 libyara/include/yara/types.h
+0 −117 libyara/include/yara/unaligned.h
+13 −11 libyara/lexer.c
+7 −5 libyara/lexer.l
+151 −1,792 libyara/modules/dotnet/dotnet.c
+20 −403 libyara/modules/elf/elf.c
+0 −716 libyara/modules/pe/authenticode-parser/authenticode.c
+0 −444 libyara/modules/pe/authenticode-parser/certificate.c
+0 −52 libyara/modules/pe/authenticode-parser/certificate.h
+0 −413 libyara/modules/pe/authenticode-parser/countersignature.c
+0 −64 libyara/modules/pe/authenticode-parser/countersignature.h
+0 −90 libyara/modules/pe/authenticode-parser/helper.c
+0 −73 libyara/modules/pe/authenticode-parser/helper.h
+0 −96 libyara/modules/pe/authenticode-parser/structs.c
+0 −124 libyara/modules/pe/authenticode-parser/structs.h
+248 −257 libyara/modules/pe/pe.c
+51 −0 libyara/modules/pe/pe_utils.c
+7 −7 libyara/notebook.c
+65 −76 libyara/parser.c
+37 −175 libyara/re.c
+703 −596 libyara/re_grammar.c
+21 −36 libyara/re_grammar.h
+6 −6 libyara/re_lexer.c
+5 −5 libyara/rules.c
+7 −35 libyara/scan.c
+0 −135 libyara/simple_str.c
+0 −2 libyara/strutils.c
+0 −80 libyara/tlshc/tlsh.c
+0 −1,230 libyara/tlshc/tlsh_impl.c
+0 −111 libyara/tlshc/tlsh_impl.h
+0 −3,753 libyara/tlshc/tlsh_util.c
+0 −22 libyara/tlshc/tlsh_util.h
+3 −4 tests/BUILD.bazel
+ tests/data/756684f4017ba7e931a26724ae61606b16b5f8cc84ed38a260a34e50c5016f59
+9 −14 tests/test-alignment.c
+0 −9 tests/test-atoms.c
+0 −48 tests/test-dotnet.c
+1 −122 tests/test-pe.c
+4 −238 tests/test-rules.c
+5 −14 windows/vs2015/libyara/libyara.vcxproj
+5 −14 windows/vs2017/libyara/libyara.vcxproj

0 comments on commit 3e1f9cf

Please sign in to comment.