Skip to content

Commit 94414d0

Browse files
Yuxaelgwillem
authored andcommitted
Fix handling of files with cached rulesets (#251)
* Fix handling of files with cached rulesets * Fixed RulesPrivider * Py2.6 test
1 parent e20502e commit 94414d0

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

mwscan/ruleset.py

+13-11
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_rules(self):
5151
return rawrules.encode('ascii', 'ignore')
5252
except NameError:
5353
pass # py3
54-
54+
5555
return rawrules
5656

5757

@@ -85,7 +85,7 @@ def _get_cache_timestamp_content(self, cachefile):
8585
mtime = time.gmtime(mtime)
8686
mtime = time.strftime('%a, %d %b %Y %H:%M:%S GMT', mtime)
8787

88-
with open(cachefile) as fh:
88+
with open(cachefile, 'rb') as fh:
8989
cachedcontent = fh.read()
9090

9191
return mtime, cachedcontent
@@ -114,21 +114,23 @@ def _httpget(self, url):
114114

115115
if resp.status_code == 200:
116116
with open(cachefile, 'wb') as fh:
117-
fh.write(resp.content)
117+
# py3 vs py2
118+
if type(resp.content) is bytes:
119+
ruleset = resp.content.decode('utf-8', 'ignore')
120+
else:
121+
ruleset = resp.content
118122

119-
# py3 vs py2
120-
if type(resp.content) is bytes:
121-
return resp.content.decode('utf-8', errors='ignore')
122-
else:
123-
return resp.content
123+
fh.write(ruleset.encode('utf-8', 'ignore'))
124+
125+
return ruleset
124126

125127
if resp.status_code == 304:
126128
logging.debug(
127129
'Upstream {0} is the same as our cache (HTTP 304)'.format(url))
128130

129131
# Upstream hasn't changed (304) or has err'd
130132
if cachedcontent is not None:
131-
return cachedcontent
133+
return cachedcontent.decode('utf-8', 'ignore')
132134

133135
raise RuntimeError("No cache @ {0} and invalid response for {1}: {2}".format(
134136
cachefile, url, resp.status_code))
@@ -170,8 +172,8 @@ class Files(RulesProvider):
170172
def get_rules(self):
171173
path = self._args.rules
172174
logging.info("Loading {0}".format(self._args.rules))
173-
with open(path) as fh:
174-
return fh.read()
175+
with open(path, 'rb') as fh:
176+
return fh.read().decode('utf-8', 'ignore')
175177

176178

177179
class NBS(RulesProvider):

0 commit comments

Comments
 (0)