mirror of https://github.com/MISP/misp-dashboard
update: install_script and config
parent
dedd046cc3
commit
8ce6a8dd66
|
@ -27,7 +27,7 @@ rankMultiplier = 2
|
|||
categories_in_datatable = ["internal_reference", "targeting_data", "antivirus_detection", "payload_delivery", "artifacts_dropped", "payload_installation", "persistence_mechanism", "network_activity", "payload_type", "attribution", "external_analysis", "financial_fraud", "support_Tool", "social_network", "person", "other" ]
|
||||
default_pnts_per_contribution = 1
|
||||
# array of the form [[category, pntsRcv], ...]
|
||||
pnts_per_contribution = [["payload_delivery", 1], ["artifact_dropped", 1], ["network_activity", 1]]
|
||||
pnts_per_contribution = [["payload_delivery", 1], ["artifacts_dropped", 1], ["network_activity", 1]]
|
||||
additional_help_text = ["Sightings multiplies earned points by 2", "Editing an attribute earns you the same as creating one"]
|
||||
|
||||
[Log]
|
||||
|
@ -47,6 +47,7 @@ zmq_url=tcp://localhost:50000
|
|||
db=0
|
||||
channel=1
|
||||
channelLastContributor = lastContributor
|
||||
channelLastAwards = lastAwards
|
||||
|
||||
[RedisMap]
|
||||
db=1
|
||||
|
|
|
@ -102,4 +102,10 @@ wget https://cdn.datatables.net/${DATATABLE_VERSION}/js/dataTables.bootstrap.js
|
|||
git clone https://github.com/bassjobsen/Bootstrap-3-Typeahead.git temp/Bootstrap-3-Typeahead
|
||||
mv temp/Bootstrap-3-Typeahead/bootstrap3-typeahead.min.js ./static/js
|
||||
|
||||
#punchcard
|
||||
git clone https://github.com/melenaos/jquery-punchcard.git tmep/jquery-punchcard
|
||||
mv temp/jquery-punchcard/src/punchcard.js ./static/js
|
||||
mv temp/jquery-punchcard/src/punchcard.css ./static/css
|
||||
wget https://momentjs.com/downloads/moment.js -O ./static/js
|
||||
|
||||
rm -rf ./temp
|
||||
|
|
|
@ -36,10 +36,6 @@
|
|||
<link href="{{ url_for('static', filename='css/jquery-ui.min.css') }}" rel="stylesheet" type="text/css" />
|
||||
<script src="{{ url_for('static', filename='js/jquery-ui.min.js') }}"></script>
|
||||
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/punchcard.css') }}">
|
||||
<script src="{{ url_for('static', filename='js/moment.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='js/punchcard.js') }}"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<style>
|
||||
|
|
Loading…
Reference in New Issue