Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wapiflapi/veles
Visual reverse engineering tool.
https://github.com/wapiflapi/veles
Last synced: 2 months ago
JSON representation
Visual reverse engineering tool.
- Host: GitHub
- URL: https://github.com/wapiflapi/veles
- Owner: wapiflapi
- License: apache-2.0
- Created: 2017-01-10T23:30:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-10T23:48:11.000Z (about 8 years ago)
- Last Synced: 2024-08-03T01:12:59.693Z (6 months ago)
- Language: C++
- Homepage:
- Size: 214 KB
- Stars: 267
- Watchers: 13
- Forks: 28
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE-2.0
Awesome Lists containing this project
- awesome-rainmana - wapiflapi/veles - Visual reverse engineering tool. (C++)
README
# veles - A new age tool for binary analysis
See our home page at https://codisec.com/.
See https://github.com/wapiflapi/binglide for an other explanation of
the n-gram principle in visual reverse engineering.![screenshot](http://i.imgur.com/cdiVlCD.png)
## Usage
To move around the view:
- Mouse click/drag to rotate. +Shift to keep turning.
- WASDQE or Arrow keys & Page-Up/Down (shift+up/down == page-up/down)To change the projections use the buttons. They are also mapped in the
same position to the 123456 keys on the keypad.## Building, installing
Dependencies:
- `cmake>=3.1.0`
- `zlib`
- `qt>=5.5`Optional dependencies needed for running tests:
- `gtest`
If your distribution has -dev or -devel packages, you'll also need ones
corresponding to the dependencies above.On ubuntu it can be done like this::
`apt-get install cmake zlib zlib-dev qtbase5 qtbase5-dev`
To build ::
```
$ mkdir build
$ cd build
$ cmake -D CMAKE_BUILD_TYPE=Release ..
$ make
```To install [which is optional], use ::
```
$ make install
```If you want to install to a non-default directory, you'll also need to pass
it as an option to cmake before building, eg.::```
$ cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr/local ..
```