1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
***************
Getting started
***************
YARA is a multi-platform program running on Windows, Linux and Mac OS X. You can
find the latest release at https://github.com/VirusTotal/yara/releases.
.. _compiling-yara:
Compiling and installing YARA
=============================
Download the source tarball and get prepared for compiling it::
tar -zxf yara-3.5.0.tar.gz
cd yara-3.5.0
./bootstrap.sh
Make sure you have ``automake``, ``libtool``, ``make`` and ``gcc`` installed
in your system. Ubuntu and Debian users can use::
sudo apt-get automake libtool make gcc
If you plan to modify YARA's source code you may also need ``flex`` and
``bison`` for generating lexers and parsers::
sudo apt-get flex bison
Compile and install YARA in the standard way::
./configure
make
sudo make install
Run the test cases to make sure that everything is fine::
make check
Some YARA's features depends on the OpenSSL library. Those features are
enabled only if you have the OpenSSL library installed in your system. If not,
YARA is going to work fine but you won't be able to use the disabled features.
The ``configure`` script will automatically detect if OpenSSL is installed or
not. If you want to enforce the OpenSSL-dependant features you must pass
``--with-crypto`` to the ``configure`` script. Ubuntu and Debian users can
use ``sudo apt-get install libssl-dev`` to install the OpenSSL library.
The following modules are not copiled into YARA by default:
* cuckoo
* magic
If you plan to use them must pass the corresponding ``--enable-<module name>``
arguments to the ``configure`` script.
For example::
./configure --enable-cuckoo
./configure --enable-magic
./configure --enable-cuckoo --enable-magic
Modules usually depends on external libraries, depending on the modules you
choose to install you'll need the following libraries:
* cuckoo:
Depends on `Jansson <http://www.digip.org/jansson/>`_ for parsing JSON.
Some Ubuntu and Debian versions already include a package named
``libjansson-dev``, if ``sudo apt-get install libjansson-dev`` doesn't
work for you then get the source code from
`its repository <https://github.com/akheron/jansson>`_.
* magic:
Depends on *libmagic*, a library used by the Unix standard program
`file <http://en.wikipedia.org/wiki/File_(command)>`_.
Ubuntu, Debian and CentOS include a package
``libmagic-dev``. The source code can be found
`here <ftp://ftp.astron.com/pub/file/>`_.
Installing on Windows
---------------------
Compiled binaries for Windows in both 32 and 64 bits flavors can be found
in the link below. Just download the version of you want, unzip the archive,
and put the ``yara.exe`` and ``yarac.exe`` binaries anywhere in your disk.
To install the ``yara-python`` extension download an execute the installer
corresponding to the version of Python you're using.
`Download Windows binaries <https://b161268c3bf5a87bc67309e7c870820f5f39f672.googledrive.com/host/0BznOMqZ9f3VUek8yN3VvSGdhRFU/>`_
If you want to build YARA yourself you can use the *Visual Studio 2010* or
*Visual Studio 2015* projects found in the source tree under *./windows/vs2010*
and *./windows/vs2015* respectively.
Installing on Mac OS X with Homebrew
------------------------------------
To install YARA using `Homebrew <http://brew.sh>`_ simply type
``brew install yara``.
Installing yara-python
----------------------
If you plan to use YARA from your Python scripts you need to install the
``yara-python`` extension. Please refer to https://github.com/VirusTotal/yara-python
for instructions on how to install it.
Running YARA for the first time
===============================
Now that you have installed YARA you can write a very simple rule and use the
command-line tool to scan some file::
echo "rule dummy { condition: true }" > my_first_rule
yara my_first_rule my_first_rule
Don't get confused by the repeated ``my_first_rule`` in the arguments to
``yara``, I'm just passing the same file as both the rules and the file to
be scanned. You can pass any file you want to be scanned (second argument).
If everything goes fine you should get the following output::
dummy my_first_rule
Which means that the file ``my_first_rule`` is matching the rule named ``dummy``.
If you get an error like this::
yara: error while loading shared libraries: libyara.so.2: cannot open shared
object file: No such file or directory
It means that the loader is not finding the ``libyara`` library which is
located in ``/usr/local/lib``. In some Linux flavors the loader doesn't look for
libraries in this path by default, we must instruct him to do so by adding
``/usr/local/lib`` to the loader configuration file ``/etc/ld.so.conf``::
sudo echo "/usr/local/lib" >> /etc/ld.so.conf
sudo ldconfig
|