Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
Merged dev and master branches
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Marcelli committed Jan 31, 2020
2 parents 37a70de + 567d7ab commit 6c2f7d0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions first_plugin_ida/first.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,9 +392,9 @@ def view_about(self):
grid_layout.addWidget(QtWidgets.QLabel(FIRST.DATE), 1, 1)

grid_layout.addWidget(QtWidgets.QLabel('Report Issues'), 2, 0)
label = QtWidgets.QLabel(('<a href="https://git.vrt.sourcefire.com/'
'demonduck/FIRST/issues/new">'
'git.vrt.sourcefire.com</a>'))
label = QtWidgets.QLabel(('<a href="https://github.com/'
'vrtadmin/FIRST-plugin-ida/issues">'
'github.com/vrtadmin/FIRST-plugin-ida</a>'))
label.setTextFormat(Qt.RichText)
label.setTextInteractionFlags(Qt.TextBrowserInteraction)
label.setOpenExternalLinks(True)
Expand Down Expand Up @@ -1791,8 +1791,8 @@ class Configuration(object):
'''
def __init__(self, config=None):
self.__server = 'first.talosintelligence.com'
self.__port = 80
self.__protocol = 'http'
self.__port = 443
self.__protocol = 'https'
self.__verify = False
self.__auth = False
self.__api_key = ''
Expand Down

0 comments on commit 6c2f7d0

Please sign in to comment.