Skip to content

Commit

Permalink
module name in lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessandroZ committed Aug 29, 2018
1 parent 7bd925a commit bfeebeb
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions Linux/lazagne/softwares/browsers/mozilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,7 @@ def brute_master_password(self, key_data, new_version=True):
self.warning(u'No password has been found using the default list')
return u'', u'', u''

@staticmethod
def remove_padding(data):
def remove_padding(self, data):
"""
Remove PKCS#7 padding
"""
Expand Down Expand Up @@ -484,13 +483,13 @@ def run(self):

# Name, path
firefox_browsers = [
(u'Firefox', u'.mozilla/firefox'),
(u'firefox', u'.mozilla/firefox'),
# Check these paths on Linux systems
# (u'BlackHawk', u'{APPDATA}\\NETGATE Technologies\\BlackHawk'),
# (u'Cyberfox', u'{APPDATA}\\8pecxstudios\\Cyberfox'),
# (u'Comodo IceDragon', u'{APPDATA}\\Comodo\\IceDragon'),
# (u'K-Meleon', u'{APPDATA}\\K-Meleon'),
# (u'Icecat', u'{APPDATA}\\Mozilla\\icecat'),
# (u'blackHawk', u'{APPDATA}\\NETGATE Technologies\\BlackHawk'),
# (u'cyberfox', u'{APPDATA}\\8pecxstudios\\Cyberfox'),
# (u'comodo icedragon', u'{APPDATA}\\Comodo\\IceDragon'),
# (u'k-meleon', u'{APPDATA}\\K-Meleon'),
# (u'icecat', u'{APPDATA}\\Mozilla\\icecat'),
]

firefox_browsers = [Mozilla(browser_name=name, path=path) for name, path in firefox_browsers]

0 comments on commit bfeebeb

Please sign in to comment.