blob: 8b34c40d7f64ceb5507afb9a1afc2a81c40641d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright (C) 2018-2022 Open Information Security Foundation
#
# You can copy, redistribute or modify this Program under the terms of
# the GNU General Public License version 2 as published by the Free
# Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# version 2 along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
import os.path
import sys
import pprint
try:
from urllib2 import urlopen
except:
from urllib.request import urlopen
import yaml
DEFAULT_URL = "https://raw.githubusercontent.com/oisf/suricata-intel-index/master/index.yaml"
def embed_index():
"""Embed a copy of the index as a Python source file. We can't use a
datafile yet as there is no easy way to do with distutils."""
if len(sys.argv) > 1:
url = sys.argv[1]
else:
url = DEFAULT_URL
dist_filename = os.path.join(os.path.dirname(__file__), "index.py")
response = urlopen(url)
index = yaml.safe_load(response.read())
# Delete the version info to prevent the issue of the version info being out of
# date around a new release of Suricata where the index has not been updated
# to the latest recommended version. The user will be asked to update their
# sources to run the version check.
del(index["versions"])
pp = pprint.PrettyPrinter(indent=4)
with open(dist_filename, "w") as fileobj:
fileobj.write("index = {}".format(pp.pformat(index)))
if __name__ == "__main__":
embed_index()
|