Skip to content

Commit

Permalink
[version] bumped up
Browse files Browse the repository at this point in the history
  • Loading branch information
a1ext committed Oct 9, 2016
1 parent 9f6b32c commit c62d3b8
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# v 1.1.1.0
+ Added IDA for Linux support
* Fixed issue #16 (GUI resize in high-dpi resolution/font size)
* Fixed broken highlighting in python editor
* VM deployment script can get configuration path form the commandline

# v 1.1.0.9
* x64dbg's SDK and testing bundle are updated to snapshot on snapshot_2016-09-18_01-22

# v 1.1.0.8
+ Now the data can be transferred from debug-backend-side to IDA using __result__ variable

Expand Down
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ As a result we have a lot of memory regions that may represent even different mo
Installation
============
## Usage of precompiled binaries (release version)
### Debug-backend setup:
If you want to use both x86 and x86_64 targets, then you should do the following steps for each python distro.

* Set up Python 2.7 (x86/x86_64)
Expand All @@ -75,7 +76,21 @@ c:\Python27\python.exe setup.py install
* Configure your debugger backend: set up ```plugins``` directory

## Configuring of your IDA PRO:
Copy IDA plugins ```IDA[XX]\plugins\labeless_ida.plw``` and ```IDA[XX]\plugins\labeless_ida.p64``` to IDA's ```plugins``` directory, for example ```c:\IDA68\plugins```
Labeless supports **Windows** and **Linux** (starting from 6.9.5 version of) IDA PRO. Labeless handles only PE/AMD64 binaries. Labeless requires **IDAPython** plugin ```python.[plw|p64|plx|plx64]``` (it ships with IDA PRO, but make sure it works well).

There are plugins:
```
IDA[XX]\plugins\labeless_ida.plw - for IDA for Windows, handles 32-bit binaries (used with idaq)
IDA[XX]\plugins\labeless_ida.p64 - for IDA for Windows, handles 64-bit binaries (used with idaq64)
IDA[XX]\plugins\labeless_ida.plx - for IDA for Linux, handles 32-bit binaries (used with idaq)
IDA[XX]\plugins\labeless_ida.plx64 - for IDA for Linux, handles 64-bit binaries (used with idaq64)
```

Copy Labeless plugins to your IDA's ```plugins``` directory, for example ```c:\IDA68\plugins```

* In case you have IDA for Windows, please, use ```.plw```/```.p64``` plugins.

* If you have IDA for Linux, please, use ```.plx```/```.plx64``` plugins. Also, copy ```IDA[XX]/libprotobuf.so.9``` to your IDA home directory (for example ```/home/alex/ida695/````), it's an important library.

## Configuring of debug backends
### 1. OllyDbg 1.10
Expand Down
4 changes: 2 additions & 2 deletions common/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

#define VERSION_MAJOR 1
#define VERSION_MINOR 1
#define VERSION_REVISION 0
#define VERSION_BUILD 9
#define VERSION_REVISION 1
#define VERSION_BUILD 0


#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD
Expand Down
2 changes: 1 addition & 1 deletion deploy/labeless/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0.9
1.1.1.0

0 comments on commit c62d3b8

Please sign in to comment.