mirror of https://github.com/CIRCL/lookyloo
chg: rename setting enable_ignore_sri -> ignore_sri
parent
f730f118b0
commit
2c9ebe3f82
|
@ -13,7 +13,7 @@
|
|||
"days": 0,
|
||||
"hours": 0
|
||||
},
|
||||
"enable_ignore_sri": false,
|
||||
"ignore_sri": false,
|
||||
"async_capture_processes": 1,
|
||||
"use_user_agents_users": false,
|
||||
"enable_default_blur_screenshot": false,
|
||||
|
@ -114,6 +114,6 @@
|
|||
"max_tree_create_time": "The max time the generation of a tree is allowed to take",
|
||||
"s3fs": "The config to access a S3FS instance with the s3fs python module - it is not integrated properly for now as it requires urllib < 2.0 which is a non-started at this stage.",
|
||||
"index_everything": "If true, index every capture, even if it's not public. This feature requires a dedicated kvrocks instance, and is only accessible when logged-in as admin.",
|
||||
"enable_ignore_sri": "If true, the sri values are ignored and not calculated so that there are no problems while developing and testing."
|
||||
"ignore_sri": "If true, the sri values are ignored and not calculated so that there are no problems while developing and testing."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -135,7 +135,7 @@ blur_screenshot = get_config('generic', 'enable_default_blur_screenshot')
|
|||
|
||||
use_own_ua = get_config('generic', 'use_user_agents_users')
|
||||
enable_mail_notification = get_config('generic', 'enable_mail_notification')
|
||||
enable_ignore_sri = get_config('generic', 'enable_ignore_sri')
|
||||
ignore_sri = get_config('generic', 'ignore_sri')
|
||||
if enable_mail_notification:
|
||||
confirm_message = get_config('generic', 'email').get('confirm_message')
|
||||
else:
|
||||
|
@ -179,7 +179,7 @@ app.jinja_env.globals.update(month_name=month_name)
|
|||
|
||||
|
||||
def get_sri(directory: str, filename: str) -> str:
|
||||
if enable_ignore_sri:
|
||||
if ignore_sri:
|
||||
return ""
|
||||
sha512 = sri_load()[directory][filename]
|
||||
return f'integrity=sha512-{sha512}'
|
||||
|
@ -1176,7 +1176,7 @@ def tree(tree_uuid: str, node_uuid: str | None=None) -> Response | str | Werkzeu
|
|||
screenshot_size=screenshot_size,
|
||||
meta=meta, enable_mail_notification=enable_mail_notification,
|
||||
enable_monitoring=lookyloo.monitoring_enabled,
|
||||
ignore_sri_enable=enable_ignore_sri,
|
||||
ignore_sri=ignore_sri,
|
||||
monitoring_settings=lookyloo.monitoring_settings if lookyloo.monitoring_enabled else None,
|
||||
monitoring_collections=monitoring_collections if lookyloo.monitoring_enabled else [],
|
||||
enable_context_by_users=enable_context_by_users,
|
||||
|
|
Loading…
Reference in New Issue