Skip to content

Commit

Permalink
Merge pull request #5 from VirusTotal/v0.8
Browse files Browse the repository at this point in the history
Update plugin_loader.py
  • Loading branch information
gerardofn authored Jan 30, 2020
2 parents 6eafb31 + 0d1c16c commit 3476b74
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# VT-IDA Plugin
This is the official VirusTotal plugin for Hex-Rays IDA Pro. This plugin integrates functionality from VirusTotal web services into the IDA Pro's user interface.

The current version is v0.7beta, This plugin is not production-ready yet, and unexpected behavior can still occur. This release integrates VTGrep into IDA Pro, facilitating the searching for similar code, strings, or sequences of bytes.
The current version is v0.8beta, This plugin is not production-ready yet, and unexpected behavior can still occur. This release integrates VTGrep into IDA Pro, facilitating the searching for similar code, strings, or sequences of bytes.

## Requirements
This plugin has been developed for **IDA Pro 7.0** and beyond and supports both Python 2.7 and 3.x.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7
0.8
4 changes: 2 additions & 2 deletions plugin/vt_ida/plugin_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
except ImportError:
import configparser

VT_IDA_PLUGIN_VERSION = '0.7'
VT_IDA_PLUGIN_VERSION = '0.8'


def PLUGIN_ENTRY():
Expand Down Expand Up @@ -419,7 +419,7 @@ def check_version(self):
'User-Agent': user_agent,
'Accept': 'application/json'
}
url = 'https://raw.githubusercontent.com/VirusTotal/vt-ida-plugin/VERSION'
url = 'https://raw.githubusercontent.com/VirusTotal/vt-ida-plugin/master/VERSION'

try:
response = requests.get(url, headers=headers)
Expand Down

0 comments on commit 3476b74

Please sign in to comment.