Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

diedir is case sensitive #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Installation
#### How to install
1. Simply download DIE and run `pip install -r requirments.txt` from DIE's directory.
2. Copy the file `die_proxy.py` into IDA plugin directory
3. Create an enviorment variable named DIEDIR and set it's value to DIE directory.
3. Create an enviorment variable named `DIEDIR` and set it's value to DIE directory.

For the Windows Handle parser plugin, you will also need to install [PyWin32](http://sourceforge.net/projects/pywin32/files/pywin32/) (manually :( )

Expand Down
4 changes: 2 additions & 2 deletions die_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys


DIE_DIR = environ["DieDir"]
DIE_DIR = environ["DIEDIR"]
DIE_NAME = "DIE.py"

sys.path.append(DIE_DIR)
Expand All @@ -13,4 +13,4 @@
plugin = imp.load_source(__name__, plugin_path)

# Export the plugin entry
PLUGIN_ENTRY = plugin.PLUGIN_ENTRY
PLUGIN_ENTRY = plugin.PLUGIN_ENTRY