xbase-util 0.9.8__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {xbase_util-0.9.8 → xbase_util-1.0.0}/PKG-INFO +1 -1
- {xbase_util-0.9.8 → xbase_util-1.0.0}/setup.py +1 -1
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/packet_util.py +8 -8
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util.egg-info/PKG-INFO +1 -1
- {xbase_util-0.9.8 → xbase_util-1.0.0}/README.md +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/setup.cfg +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/__init__.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/add_column_util.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/common_util.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/dangerous_util.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/__init__.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/bean/ConfigBean.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/bean/CurrentConfigBean.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/bean/FlowBean.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/bean/TaskTemplateBean.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/bean/__init__.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/dao/ConfigDao.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/dao/CurrentConfigDao.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/dao/FlowDao.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/dao/TaskTemplateDao.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/dao/__init__.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/db/initsqlite3.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/es_db_util.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/esreq.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/geo_util.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/handle_features_util.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/pcap_util.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util/xbase_constant.py +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util.egg-info/SOURCES.txt +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util.egg-info/dependency_links.txt +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util.egg-info/not-zip-safe +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util.egg-info/top_level.txt +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util_assets/GeoLite2-City.mmdb +0 -0
- {xbase_util-0.9.8 → xbase_util-1.0.0}/xbase_util_assets/arkimeparse.js +0 -0
@@ -44,9 +44,9 @@ def get_all_columns(
|
|
44
44
|
if contains_plain_body_column:
|
45
45
|
result_columns += plain_body_columns
|
46
46
|
if contains_pcap_flow_text:
|
47
|
-
result_columns
|
47
|
+
result_columns += pcap_flow_text_column
|
48
48
|
if contains_abnormal_features_column:
|
49
|
-
result_columns
|
49
|
+
result_columns += abnormal_features_column
|
50
50
|
return result_columns
|
51
51
|
|
52
52
|
|
@@ -127,12 +127,12 @@ def get_detail_by_package(publicField, req_header, req_body, res_header, res_bod
|
|
127
127
|
if f"dst_{key}" in src_dst_header:
|
128
128
|
res_field[f"dst_{key}"] = value
|
129
129
|
res_field['abnormal_has_xff'] = has_xss_injection([req_body])
|
130
|
-
res_field['abnormal_has_dir_penetration'] = has_dir_penetration([req_header,req_body])
|
131
|
-
res_field['abnormal_has_templates_injection'] = has_templates_injection([req_header,req_body])
|
132
|
-
res_field['abnormal_has_crlf_injection'] = has_crlf_injection([req_header,req_body])
|
133
|
-
res_field['abnormal_has_xxe_attack'] = has_xxe_attack([req_header,req_body])
|
134
|
-
res_field['abnormal_has_code_injection_or_execute'] = has_code_injection_or_execute([req_header,req_body])
|
135
|
-
res_field['abnormal_has_sql_injection'] = has_sql_injection([req_header,req_body])
|
130
|
+
res_field['abnormal_has_dir_penetration'] = has_dir_penetration([req_header, req_body])
|
131
|
+
res_field['abnormal_has_templates_injection'] = has_templates_injection([req_header, req_body])
|
132
|
+
res_field['abnormal_has_crlf_injection'] = has_crlf_injection([req_header, req_body])
|
133
|
+
res_field['abnormal_has_xxe_attack'] = has_xxe_attack([req_header, req_body])
|
134
|
+
res_field['abnormal_has_code_injection_or_execute'] = has_code_injection_or_execute([req_header, req_body])
|
135
|
+
res_field['abnormal_has_sql_injection'] = has_sql_injection([req_header, req_body])
|
136
136
|
return res_field
|
137
137
|
|
138
138
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|